diff --git a/sdk/textanalytics/ai-text-analytics/karma.conf.js b/sdk/textanalytics/ai-text-analytics/karma.conf.js index 9d7d40f90c1d..870ddb71963d 100644 --- a/sdk/textanalytics/ai-text-analytics/karma.conf.js +++ b/sdk/textanalytics/ai-text-analytics/karma.conf.js @@ -4,12 +4,9 @@ // https://github.com/karma-runner/karma-chrome-launcher process.env.CHROME_BIN = require("puppeteer").executablePath(); require("dotenv").config(); -const { - jsonRecordingFilterFunction, - isPlaybackMode, - isSoftRecordMode, - isRecordMode, -} = require("@azure-tools/test-recorder"); +const { relativeRecordingsPath } = require("@azure-tools/test-recorder"); + +process.env.RECORDINGS_RELATIVE_PATH = relativeRecordingsPath(); module.exports = function (config) { config.set({ @@ -31,16 +28,14 @@ module.exports = function (config) { "karma-coverage", "karma-sourcemap-loader", "karma-junit-reporter", - "karma-json-to-file-reporter", "karma-source-map-support", - "karma-json-preprocessor", ], // list of files / patterns to load in the browser files: [ "dist-test/index.browser.js", { pattern: "dist-test/index.browser.js.map", type: "html", included: false, served: true }, - ].concat(isPlaybackMode() || isSoftRecordMode() ? ["recordings/browsers/**/*.json"] : []), + ], // list of files / patterns to exclude exclude: [], @@ -49,7 +44,6 @@ module.exports = function (config) { // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { "**/*.js": ["sourcemap", "env"], - "recordings/browsers/**/*.json": ["json"], // IMPORTANT: COMMENT following line if you want to debug in your browsers!! // Preprocess source file to calculate code coverage, however this will make source file unreadable // "dist-test/index.js": ["coverage"] @@ -69,12 +63,13 @@ module.exports = function (config) { "TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME", "TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME", "TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME", + "RECORDINGS_RELATIVE_PATH", ], // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter - reporters: ["mocha", "coverage", "junit", "json-to-file"], + reporters: ["mocha", "coverage", "junit"], coverageReporter: { // specify a common output directory @@ -97,11 +92,6 @@ module.exports = function (config) { properties: {}, // key value pair of properties to add to the section of the report }, - jsonToFileReporter: { - filter: jsonRecordingFilterFunction, - outputPath: ".", - }, - // web server port port: 9876, @@ -136,9 +126,6 @@ module.exports = function (config) { browserNoActivityTimeout: 60000000, browserDisconnectTimeout: 10000, browserDisconnectTolerance: 3, - browserConsoleLogOptions: { - terminal: !isRecordMode(), - }, client: { mocha: { diff --git a/sdk/textanalytics/ai-text-analytics/package.json b/sdk/textanalytics/ai-text-analytics/package.json index 72c2cd22d52d..4999161f0847 100644 --- a/sdk/textanalytics/ai-text-analytics/package.json +++ b/sdk/textanalytics/ai-text-analytics/package.json @@ -54,9 +54,6 @@ "Azure Cognitive Services instance": "https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account" } }, - "browser": { - "./dist-esm/test/public/utils/env.js": "./dist-esm/test/public/utils/env.browser.js" - }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", "build:browser": "tsc -p . && dev-tool run bundle", @@ -70,8 +67,8 @@ "execute:samples": "dev-tool samples run samples-dev", "extract-api": "tsc -p . && api-extractor run --local", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", - "integration-test:browser": "karma start --single-run", - "integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 5000000 --full-trace \"dist-esm/test/{,!(browser)/**/}*.spec.js\"", + "integration-test:browser": "dev-tool run test:browser", + "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 \"dist-esm/test/**/*.spec.js\"", "integration-test": "npm run integration-test:node && npm run integration-test:browser", "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]", "lint": "eslint package.json api-extractor.json src test --ext .ts", @@ -79,8 +76,8 @@ "test:browser": "npm run clean && npm run build:test && npm run unit-test:browser", "test:node": "npm run clean && npm run build:test && npm run unit-test:node", "test": "npm run clean && npm run build:test && npm run unit-test", - "unit-test:browser": "karma start --single-run", - "unit-test:node": "mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/{,!(browser)/**/}*.spec.ts\"", + "unit-test:browser": "dev-tool run test:browser", + "unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 \"test/**/*.spec.ts\"", "unit-test": "npm run unit-test:node && npm run unit-test:browser" }, "sideEffects": false, @@ -100,7 +97,8 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "^2.0.1", "@azure/test-utils": "^1.0.0", - "@azure-tools/test-recorder": "^1.0.0", + "@azure-tools/test-recorder": "^2.0.0", + "@azure-tools/test-credential": "^1.0.0", "@microsoft/api-extractor": "^7.18.11", "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", @@ -119,8 +117,6 @@ "karma-env-preprocessor": "^0.1.1", "karma-firefox-launcher": "^1.1.0", "karma-ie-launcher": "^1.0.0", - "karma-json-preprocessor": "^0.3.3", - "karma-json-to-file-reporter": "^1.0.1", "karma-junit-reporter": "^2.0.1", "karma-mocha": "^2.0.1", "karma-mocha-reporter": "^2.2.5", diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json index aa47e6f9e94f..54150754a658 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json @@ -1,52 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:37 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "6a905e00-80ee-49db-8ae6-c4c8838e0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "65dffabb-3e41-4dd3-95e2-606fa1b95708", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "119" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8b01993817087370bb908d9a38a4c2e3" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000333-0000000000000668-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a268af09-9de6-4770-9200-d3d847a955f4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "490bf34e-c754-45b1-a69e-872b3cb4d2a2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:14:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json index ecd250fad0a2..00bd935add56 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -1,52 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "b456bea7-e43b-4133-9601-fa8f9bba0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "c937686d-bbf5-41d6-a0be-4b1649e2b273", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4b8d21704d9ca84d28e03111e415243b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000334-0000000000000672-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ef20ef36-cb68-4d0f-997a-4a1a34ce1743", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5063203a-b917-43d0-bf0a-388698cada38", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:14:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json index ce26657bf753..9ab9d0e4a8d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -1,52 +1,240 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "15ccfc8c-8bf9-41fc-9949-86f732960300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.89,\"neutral\":0.08,\"negative\":0.03},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.89,\"neutral\":0.08,\"negative\":0.03},\"offset\":0,\"length\":73,\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\"}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.11,\"neutral\":0.29,\"negative\":0.6},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.11,\"neutral\":0.29,\"negative\":0.6},\"offset\":0,\"length\":29,\"text\":\"La carretera estaba atascada.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.09,\"neutral\":0.58,\"negative\":0.33},\"offset\":30,\"length\":35,\"text\":\"Había mucho tráfico el día de ayer.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "60b8828d-d311-413f-843e-57407d7b019b", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "00180065469789c0a8b259a0b5727975" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000338-0000000000000688-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e9fde97c-5ec1-4c76-a13d-b58bf2146bec", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "74fd7f3c-73e7-418d-95c4-e0dda625c4ad", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:14:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "191" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "offset": 0, + "length": 73, + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos." + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "offset": 0, + "length": 29, + "text": "La carretera estaba atascada." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.09, + "neutral": 0.58, + "negative": 0.33 + }, + "offset": 30, + "length": 35, + "text": "Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json index 5ec07a422937..659ea4b59539 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json @@ -1,53 +1,125 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "14ec9927-5649-462a-b621-18094db00e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"The food and service is not good\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":32,\"text\":\"The food and service is not good\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":13,\"length\":7,\"text\":\"service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":28,\"length\":4,\"text\":\"good\",\"isNegated\":true}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "57f117c6-f1d3-4052-a37a-04e24b0ce861", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "103" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "a8f83bf62f937724c49fbdc52c92cd01" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "84", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000340-0000000000000696-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "64d58734-763d-4e11-b7ca-f83fb6b8948a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food and service is not good", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ee9e0c32-ddf5-4b35-b9c6-0534170e7d84", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:14:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "126" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 32, + "text": "The food and service is not good", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 13, + "length": 7, + "text": "service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 28, + "length": 4, + "text": "good", + "isNegated": true + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json index a410e5858ddb..20a7dab0d264 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json @@ -1,53 +1,80 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a668c5ee0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"today is a hot day\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.1,\"neutral\":0.88,\"negative\":0.02},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.1,\"neutral\":0.88,\"negative\":0.02},\"offset\":0,\"length\":18,\"text\":\"today is a hot day\",\"targets\":[],\"assessments\":[]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "324b9cfc-7f32-44a4-9002-289ed3729fb8", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4a32b51201e582791f5a784bb39eb256" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "70", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000341-0000000000000700-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a1e4dc12-3f09-4a94-a292-a0d32e025898", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "today is a hot day", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5c52462b-3221-44a4-98c5-a91b26a04bc2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:14:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "offset": 0, + "length": 18, + "text": "today is a hot day", + "targets": [], + "assessments": [] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json index ab3a213f66d5..36d2fa2b0843 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json @@ -1,53 +1,124 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-504562370700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"It has a sleek premium aluminum design that makes it beautiful to look at.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.98,\"neutral\":0.02,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.98,\"neutral\":0.02,\"negative\":0.0},\"offset\":0,\"length\":74,\"text\":\"It has a sleek premium aluminum design that makes it beautiful to look at.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":32,\"length\":6,\"text\":\"design\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":9,\"length\":5,\"text\":\"sleek\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":7,\"text\":\"premium\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "7049a5c1-b8dc-4794-886a-4bfee288d097", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "89" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "aec5e48e164c2a8b36c1b91efb4e6a75" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "126", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000339-0000000000000692-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dcdce423-b9e1-4e8b-8e6e-40f0de18dd31", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c67a46fc-7322-407b-8ba9-dfd4f7a6576b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:14:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "offset": 0, + "length": 74, + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 32, + "length": 6, + "text": "design", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 9, + "length": 5, + "text": "sleek", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 7, + "text": "premium", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json index bba3bd417dfe..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cabbc96937b89ec2ffef29ca710c8540" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json index 7d348fa2b726..82e5eaf46437 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json @@ -1,53 +1,709 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "efcc41dd-167d-428c-b3f9-ad329ae50600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"The food was unacceptable\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"The rooms were beautiful. The AC was good and quiet.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The breakfast was good, but the toilet was smelly.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"The toilet smelled.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "1bf8f91d-4727-4bb9-bbb5-3c2a68945c33", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "40f144d24f3fb5c645999a2c78b3953e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "622", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000336-0000000000000680-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "58351ea2-3fd2-475e-adc8-ba7f18d4c0ce", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b126827c-1168-41b3-b31b-3d8ec2f4db33", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", + "Date": "Fri, 18 Feb 2022 19:14:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json index e045a430289f..c8a4548ed910 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -1,52 +1,190 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "2b8972aa-1ab4-4270-9e7d-45c7277c0f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "1791423a-732e-4fb7-8b5d-d9ea55b7ebd4", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "114" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e151e8485409be49c4aed9e1e27f646b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "531", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000337-0000000000000684-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "261f69a3-5209-4694-9c77-e8c627587f63", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab20fa24-21c1-4fc5-8bb5-3b6b7cc1de6b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:14:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json index 47055fb0f35d..f1e7cbab8b93 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -1,51 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e333c0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Hello world!\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "66bb741c-ecd6-479f-b997-7d3999875ef2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "95dc0a75a7e111778cfbf0de50a24cb0" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000335-0000000000000676-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2c03e27f-33ef-4c17-9191-b45d4ece2277", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Hello world!", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f0baaeb-8724-4331-b10f-7e2ef0479525", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json index 02bada05b7af..b307ab35ae2a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json @@ -1,50 +1,64 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "30b253dc-ec45-4177-a6af-07c513320600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"impossible\",\"countryHint\":\"fr\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"French\",\"iso6391Name\":\"fr\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "aaf6a7ef-94d4-4354-a3c5-79f68d224422", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1c00e733f3426ca4c2ad539a5e61d689" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "65", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000343-0000000000000708-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9d3e25c2-8882-44df-a097-24eda94972b4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "impossible", + "countryHint": "fr" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9d7e886-7b87-4b37-9d76-c1246ef6a28a", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "French", + "iso6391Name": "fr", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json index 31f3bc63c604..10ebe8aab832 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -1,50 +1,130 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:41 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a668edee0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"mx\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"mx\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"4\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"5\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "2404a42d-6ee2-42a5-ae36-80d776a7bfef", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fe64a916306e48562569c99a6f167f98" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "651", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000347-0000000000000724-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "67f76b21-9e3c-49c0-ae47-223fd23d1088", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all." + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "mx" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "mx" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f91afe5-84c3-4e57-accc-0344bb56e944", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:15:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json index 91aa86e4fa8a..2fe1ecdd256c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json @@ -1,50 +1,106 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "b456bea7-e43b-4133-9601-fa8fd1ba0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"us\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"us\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"us\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"us\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "1717b7c8-77ef-47a1-8442-5f53f8b5f1ce", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cf45d28b6431c9dcf6e5585c883eeed6" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "506", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000342-0000000000000704-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "209676ca-0504-415e-83b3-7b59001f42f4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "us" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "us" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "us" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "us" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e8d2dfa7-6aa1-4db5-971a-a6fbed3f9aec", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json index 490225221cf3..739e2a518f59 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -1,50 +1,134 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:41 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "30b253dc-ec45-4177-a6af-07c526320600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"4\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"5\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "adfc8eb8-4f37-4266-8f8a-97a806bec66b", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "07a89b99a0d5d9f650d0b29b95719c66" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "715", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000345-0000000000000716-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "11a4b92f-b017-48c0-9315-62aab725a9b5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "66410d43-47d0-4984-9355-72fb48e54f4b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:15:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json index 973e542add6e..d9b4cfa641ed 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -1,50 +1,64 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "e7966275-721e-4837-aa23-8edf5e7f0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I use Azure Functions to develop my service.\",\"countryHint\":\"\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":0.95},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "ec2103d9-9300-4b11-980b-355655be9020", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1e4ad2fbcfb9705b49f259dce5dd663f" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "97", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000344-0000000000000712-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7e0a4ebc-5390-4f8c-a07e-0db5e2ba5ed6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I use Azure Functions to develop my service.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55f14caa-210d-4051-9c68-a3e55c2567ed", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.95 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json index f837cfbc7c5b..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7a76e1e1e89f55f4e595e2fbaeab47ee" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json index 10ae2c491997..4b5819c5ac84 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -1,49 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:41 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "14ec9927-5649-462a-b621-180974b00e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"hello\",\"countryHint\":\"invalidcountry\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Country Hint.\",\"innererror\":{\"code\":\"InvalidCountryHint\",\"message\":\"Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code.\"}}}],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "82459f52-6fc4-4927-b1a5-5eca3b23526e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "47fb39e4d90d4d4f6b254f5b853c7a94" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "72", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000346-0000000000000720-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2c602c2a-d5ee-4918-9517-af13599158cf", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "hello", + "countryHint": "invalidcountry" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4b80adf9-303d-41a6-b6ff-1e17fae714e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "message": "Invalid Country Hint.", + "innererror": { + "code": "InvalidCountryHint", + "message": "Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code." + } + } + } + ], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json index ca2a513588e5..136aea93b109 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,50 +1,131 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "b3b93de1-7a2a-491d-a3df-aa19180c0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"entire trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"last book\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"Monte Rainier\",\"caminos\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"mucho tráfico\",\"día\",\"carretera\",\"ayer\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "ca738c44-7e18-4f8e-abef-0f39cd2c4578", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b1fef77e495c77fd0f24ac797998e7cd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000356-0000000000000760-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4b2ee02e-8e23-4efa-aaaf-a9951cfdfcb7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f932c22-ac5d-44a1-9edd-09f4f0c7b461", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:15:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "last book" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "Monte Rainier", + "caminos" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "mucho tr\u00E1fico", + "d\u00EDa", + "carretera", + "ayer" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json index 82dd3472300b..79e5471b1cd6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -1,50 +1,103 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "404352a4-c3cd-44cb-b789-2b26de4f0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "96a39347-7874-4d4c-aad5-0a803c24b515", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "87d3297b8831a7187e4fc0b3fbb0c461" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000354-0000000000000752-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8e3ba2bf-51fe-4439-9fd9-3c38c21923ba", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb53a1db-3ddf-484d-b963-41867a1064b2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json index 315aba5edf8d..9eed308243b3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -1,50 +1,103 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "b456bea7-e43b-4133-9601-fa8f0ebb0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "55e35274-ed40-4462-9d1f-59d3add1f8d1", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "0615d3d4c4fd132428e37ddec4e40fdd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000353-0000000000000748-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "89fad7cf-9e41-46ff-bbb1-4d81a42be3f6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b94265c3-0944-468f-8efb-5c86a719b359", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json index 0936c6c18e4e..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e3619dd2bea2cc5858c29bf862efe4bd" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json index fe56f5230645..f6c746acf495 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -1,49 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e05199880400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "0537fd24-0620-4140-b071-9799e9dbfb45", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7a23f594562b7234b10430b3185b9a05" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000355-0000000000000756-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dd267bea-28c8-4baf-ac6b-51539ff166ae", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad53e98b-4a36-47c5-9a9b-8b64e5221df9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index f4b9f7a52109..4e21bb401ece 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,52 +1,195 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "06d03ac3-c989-4eee-bc78-cd18adfe0d00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.61},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.96},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.82},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"Monte Rainier\",\"category\":\"Location\",\"offset\":29,\"length\":13,\"confidenceScore\":0.85}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"carretera\",\"category\":\"Location\",\"offset\":3,\"length\":9,\"confidenceScore\":0.81},{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "bf224186-c563-4f78-be80-61ac1b022355", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7c7eca1ef4566913e8eabad160d2de95" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000351-0000000000000740-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "246b16e5-87db-4c00-9433-581c74c7daae", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "115e67cf-d69e-48a2-95d3-e0c0099d9ea3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:15:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "Monte Rainier", + "category": "Location", + "offset": 29, + "length": 13, + "confidenceScore": 0.85 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "carretera", + "category": "Location", + "offset": 3, + "length": 9, + "confidenceScore": 0.81 + }, + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json index f99e7095c05c..47b1156966b5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -1,52 +1,169 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e7e3c0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.61},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.96},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.82},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.92}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "a5d0481e-f06e-4b47-9a70-99bf607f39c8", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "483ba314d4233192906e80e6e7456301" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000349-0000000000000732-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "91b659a5-e64d-4e59-891a-a0e724750355", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "20cd8460-c577-4792-a509-85c764882251", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json index ec87b1d578a9..fc8437a848fc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -1,52 +1,169 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:41 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e05155880400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.61},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.96},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.82},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.92}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "8797cad0-baf3-4b99-b157-6cded013d146", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ba84ff7f5448122a1514c4eb618c81eb" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000348-0000000000000728-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ff1b7c05-f25e-4221-ab9b-d4bb00192dab", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27291a9f-2270-4df6-9c6a-8b3d0006ce23", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json index d2f35737ca4e..c30054f0f72e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -1,51 +1,83 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "e7966275-721e-4837-aa23-8edf957f0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 5 records are permitted.\"}}}", - "responseHeaders": { - "apim-request-id": "b7d4b79c-23a6-4283-aeb2-0a5472c44e81", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7de71703965569a57d9c84d5ae95763a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000352-0000000000000744-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "056ae29a-8911-4b86-af70-cbd901fddfeb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "59dad432-dbed-4b93-b5f3-1564b59941ab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:08 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": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json index 678b6ed2704e..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "aa30e0a7c5dbe20f0e0c7ccd6c0fb095" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json index 6f3c2d39e4f9..37d9456f1c7c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -1,51 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38dffef0e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "55f574a3-4abe-4c08-8c95-3bcb3b527fcd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "93d3c5553b3c71f204cb6844585dc315" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000350-0000000000000736-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f24cb1e6-ecf8-4575-9176-3491ab13c026", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "09890baa-8d0f-4f20-a99a-ecf15589e0e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 77ff39f62665..aa7c40bbd1b7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,52 +1,200 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "404352a4-c3cd-44cb-b789-2b260b500400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"bingId\":\"9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906\",\"name\":\"Monte Rainier\",\"matches\":[{\"text\":\"Monte Rainier\",\"offset\":29,\"length\":13,\"confidenceScore\":0.81}],\"language\":\"es\",\"id\":\"Monte Rainier\",\"url\":\"https://es.wikipedia.org/wiki/Monte_Rainier\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "8abd42e6-4f35-4f02-99f1-695e12bc7b7d", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e409ba5d8d13f9e12d9f5e0ea02b9921" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000370-0000000000000814-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "31d88147-e995-4237-a9bf-ba89096f6517", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9206f103-31d2-45bd-be16-65866eb9a836", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:15:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "bingId": "9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906", + "name": "Monte Rainier", + "matches": [ + { + "text": "Monte Rainier", + "offset": 29, + "length": 13, + "confidenceScore": 0.81 + } + ], + "language": "es", + "id": "Monte Rainier", + "url": "https://es.wikipedia.org/wiki/Monte_Rainier", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json index 3266a8cc8a8f..b6b76d3ad406 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -1,52 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38d57f00e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "5324cea6-e7b9-4be2-91fc-fb2cd2f17c07", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4f0d5d390bc38c36eaf5bdaaa4349e83" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000368-0000000000000806-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "415e381c-36ee-415f-9dea-584499b3a37d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2cfb7cc-1e18-4800-b027-120a0b2db9c4", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json index d50aee2cf44b..98bd864e4465 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -1,52 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e051e0880400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "7c239806-296f-4fcf-979a-eb129acaf92d", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "30c29afb38fdf2180cc2cedeb3f4fc16" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000367-0000000000000802-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "47a04d20-cd65-41af-8a01-7fa15cf127ed", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "11d2d519-c862-426a-a7c2-0abe19cb58c5", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json index 527b745fd7fe..d10e2ac1e44f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -1,51 +1,83 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "2b8972aa-1ab4-4270-9e7d-45c7017d0f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 5 records are permitted.\"}}}", - "responseHeaders": { - "apim-request-id": "ecfda3b8-632c-4fef-a361-c349b76e9464", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7de71703965569a57d9c84d5ae95763a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000371-0000000000000818-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "61fcd737-ae17-435b-9281-1f8fdd360448", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "01037aba-be95-4870-9a18-ad08d40d86f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json index 6e5f1ec654ea..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "85638de68feea86c1695a14c61ca59de" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json index 770c08baee2e..8942f76f8e16 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -1,51 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "efcc41dd-167d-428c-b3f9-ad327ce60600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"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=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "4505ff6a-f843-46d5-afe2-60acd5d2e90d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5fb15576b315482f44754cc0f6d91801" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000369-0000000000000810-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "eb03810c-0092-4683-a50c-ca1ca77f887a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e8c792a-c450-4279-9315-8ff5e5dc20ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2" + }, + "ResponseBody": { + "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=named-entity-recognition" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json index 2c915fcf278f..6234c7674592 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json @@ -1,53 +1,76 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "efcc41dd-167d-428c-b3f9-ad3264e60600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit", - "domain": "PHI" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I work at Microsoft and my phone number is 333-333-3333\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I work at ********* and my phone number is ************\",\"id\":\"0\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":10,\"length\":9,\"confidenceScore\":0.94},{\"text\":\"333-333-3333\",\"category\":\"PhoneNumber\",\"offset\":43,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "01df9b5d-471a-4281-af4a-f0147faa5ade", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6aacb0e9cdd05e66fe9904538c611eab" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026domain=PHI", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "107", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000363-0000000000000788-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d5508f02-dc8c-4293-b381-35c52bfa7a32", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I work at Microsoft and my phone number is 333-333-3333", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "494e919f-aeb8-4290-9f37-357adb9b642f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I work at ********* and my phone number is ************", + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 10, + "length": 9, + "confidenceScore": 0.94 + }, + { + "text": "333-333-3333", + "category": "PhoneNumber", + "offset": 43, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json index b154227ef706..c988a53714b8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json @@ -1,53 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38d44f00e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit", - "piiCategories": "USSocialSecurityNumber" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "f2945dd9-32ac-437b-b2c4-a7262ce173a0", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "715a39f4e2fef48461eed60ed7c423ec" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000364-0000000000000792-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6916d3b4-1a4f-4912-b61c-1e1844256bb5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bcbfa694-b3a9-4cee-a60b-93dd54088a77", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 4aea3cbc46cd..9d3e7618b02d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,52 +1,132 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "15ccfc8c-8bf9-41fc-9949-86f7a6960300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"1\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"3\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"La carretera estaba atascada. Había mucho tráfico el día de ****.\",\"id\":\"5\",\"entities\":[{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "8a0f0364-a8f0-4997-9917-9236c59df2a0", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5ec8aaf6662a33e07532390829e62e7a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000362-0000000000000784-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8c4120b1-5ad2-45f0-af10-0e251d66b178", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f3e2d404-4d45-4c4e-835c-363b6f7fbf17", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:15:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "1", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ****.", + "id": "5", + "entities": [ + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json index 5bab97c57c3f..6b72b876b72c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -1,52 +1,112 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b81d2c0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"I didn't like the last book I read at all.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "93119f76-43d3-4f9d-b92e-20d5f3d2bb8b", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "a7239aa57ac74e2a4ab2321e2ed80998" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000359-0000000000000772-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bf14c7f2-dcc4-4b2b-8c99-9e3b733e3269", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "74880c9c-1fa9-4cb1-b56e-633cd71b26cd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15: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": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json index a01942db8546..89cbd5da50a2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -1,52 +1,112 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344eab3c0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"I didn't like the last book I read at all.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "98c78632-c2b5-4af4-a799-3f49055b8564", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "44cf1e73908b195dbdfa52311ea4fdef" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000358-0000000000000768-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ad4dede2-2ce2-4ba2-8d6b-dab77bed053a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15ae0adc-456d-4696-9afd-07c0bfd242e9", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:15:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json index e653d3857f55..c12e510899ed 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b8262c0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Your Social Security Number is 859-98-0987.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Your Social Security Number is ***********.\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "79d3c9cd-224d-4c79-8827-b1969482bd31", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "30fd28c96f68f1a412fbad3315f2a3a2" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "95", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000360-0000000000000776-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e4f45d13-0115-4c86-aed7-6ef32d486eac", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Your Social Security Number is 859-98-0987.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "567624d2-4f41-4d9f-98fc-f10db42dcf4b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Your Social Security Number is ***********.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json index 27c6c9bfb859..1d4e129f7df0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json @@ -1,51 +1,52 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:43 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b8122c0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid Request.\",\"innererror\":{\"code\":\"MissingInputRecords\",\"message\":\"Missing input records.\"}}}", - "responseHeaders": { - "apim-request-id": "83f45bbe-811e-4857-b77c-572b53151eef", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "01afa681adb7f537c0fd8ec67214b5c0" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000357-0000000000000764-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c53da496-5a1c-4667-a187-ce7e41967390", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "cfb88e89-2ac7-4c7f-83dd-8c814469141f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "MissingInputRecords", + "message": "Missing input records." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json index c5d5bfff8c4e..792ed6087d5c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json @@ -1,72 +1,140 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344ec13c0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Patient name is *** and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"Joe\",\"category\":\"Person\",\"offset\":16,\"length\":3,\"confidenceScore\":0.78},{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "36ab47f2-c8e6-4b0d-9c78-043f75610877", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit", - "piiCategories": "USSocialSecurityNumber" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "ee5067f1-7164-40d6-91b0-eb98cfcb14c5", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "de5b4b37967461f9ed943fb6f84228e5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000365-0000000000000796-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0e9fb810-9edd-46eb-b024-ce62c4da32fc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6934ba00-c50b-46b8-b52e-051e88471e4a", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is *** and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "Joe", + "category": "Person", + "offset": 16, + "length": 3, + "confidenceScore": 0.78 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000366-0000000000000798-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "41ed2ca9-73a9-4239-ba6e-9de83e25dd48", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90f6d743-ba94-4b83-8005-c484874a1af1", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json index 89231bf5b287..6d908527c678 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -1,51 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "b3b93de1-7a2a-491d-a3df-aa19340c0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "83d5c87a-84c1-4d67-a6bb-e67dcd473143", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "80acdc66d0bcc0cc3b0446e597fc56bf" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000361-0000000000000780-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bffa6b4d-b8a4-4d39-b788-8c87354ea56a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0be3a9bc-639b-49f1-830a-3e929ccd13cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json index d4c333f037e7..346c8bdcc9c6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a66875ef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "ef2b20c6-ecfb-40d3-bcb8-2e89f1dcb83a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1405fd53d6237d457a1bba0408b1e696" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000376-0000000000000838-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8f59a19b-24be-4df6-a23f-62464deb6f20", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c16d4953-2fb5-45a9-9d68-1927a5bfd7cb", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json index ad75497facd4..6a983de04162 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b8652c0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "a6691fda-9063-4bf8-8c10-3544cc08c84f", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "bd8f8e11c32bea3ce834804ae6e55eba" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000377-0000000000000842-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5e7bd053-81f6-4237-8aa8-174563eff505", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77b6900a-dc8f-4b9a-9aec-d673e1d3d3ed", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json index 474d0f229985..872b116a33d9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a6685def0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "1e96941f-9d44-41a3-85ad-b1b1679c1fee", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "908cd4b4839d69ee785150461c56ff98" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000372-0000000000000822-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6dac3fe4-5b5b-4e21-b3c2-dffe7d017b5f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "767dac38-cd2f-4168-b324-456a466cc645", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json index 1dd8ff0898a0..179f1f99be8a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e05109890400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "95d00baf-ae6b-499a-9214-4bf1926a98ee", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "567cf9233223f7f12a6a5228401a4c20" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000373-0000000000000826-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e26220a1-319e-4a06-9566-b3dc22f48fd3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b396610-c20b-4380-b882-dd17867831f7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json index 1a1f5359d854..183373a2a196 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a66868ef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "07f7be64-a7a7-44f1-8275-5bd95207764e", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8d00943bbcf0fb21630156b78d055772" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000374-0000000000000830-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "17964623-6c5b-4bee-8fd9-8c60feece73e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb6ebdce-58ff-4154-8d8c-141e1e5cac4f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json index 238cdf589a38..6c69ee1f0031 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a6686eef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":25,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "389173ac-4ec6-43cd-a0a4-70e4ce31a1ec", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "75436508d73c2f748b997198dbef2ea3" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000375-0000000000000834-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "999d373e-5197-412a-bc06-1b08e179fe05", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "11274f01-8440-4071-af54-20cd62094873", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 25, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json index c45298ae9ff9..7b65bee25016 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38d7ef00e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "801c5b6d-267b-48ba-9837-8611e61ffefc", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "36d5a15867f64e61b29bc146c4ef9483" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000378-0000000000000846-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8f1fc889-a97d-452d-bffd-38ce6c4505b9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7920bcc-a1af-42d9-90f1-b0ebf89833e3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json index 8cd713535231..317ef7ec5958 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "6a905e00-80ee-49db-8ae6-c4c8e38f0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "d9b5a9c9-cbe0-4272-b089-e1d143af1136", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "36d5a15867f64e61b29bc146c4ef9483" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000379-0000000000000850-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "657db6fe-86ae-4938-a1fc-9cb7771adb75", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3769754-0b3e-4adf-9b3d-c4c661eaf871", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json index f08062714e88..3fdc4b292636 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a66881ef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "75194de4-cd65-406d-b600-4731d896c9ae", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7087283e7c49a7af17336acd08edebd6" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000380-0000000000000854-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d77e3fdb-fb16-475e-89f4-81f3fa01e55a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f34b6cb4-f37a-4748-ab33-6cd67c247789", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json index 18aeb99098d8..b55bbcecc595 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "14ec9927-5649-462a-b621-18095bb10e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "a0d08da3-cb42-41cc-a448-274c1b5850eb", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c4168ce455743735cc3b0867596a0298" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000394-0000000000000910-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "57920077-dd42-46eb-a33c-0ff9aa22ff7a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a8d143e8-1ce2-4a10-b201-4c90bc702424", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json index 260fba7ab399..05c8304ba18d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-5045e8380700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "3a940174-3f2c-472d-9b9f-0c4c3e553dfb", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "97deed18f72cb452533d75fe71f106cd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000395-0000000000000914-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "39cdbf38-0609-4e58-84a2-c9b016495191", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd71487c-5200-4da8-8a4d-394118ee42f8", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json index f6769e6e7d14..6200330e0045 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e1f3d0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "34920f47-704f-4568-a583-50fde9bd241c", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4e42b362a5c0bfae3331b57329538488" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000390-0000000000000894-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "db2592e2-4ee7-4f41-982e-6fd8e2af4647", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "635bbe84-000f-450a-9422-edb7482763a2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json index 92f6e1157368..ea95e05c7391 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "b3b93de1-7a2a-491d-a3df-aa19b70c0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "6dc83426-5c91-4bcb-a8f6-f2aa72d4f3b2", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c819adc2f07c63a60990e748cd4d68e9" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000391-0000000000000898-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d08ebb15-36fa-4a80-9a61-58dad0680262", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd915e19-c129-4ef9-831c-bd31629acdd4", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json index ffd88566eebc..0b7040cfcd1d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b8ad2c0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "abef6090-7b08-4c21-9877-fa9ab866ba6b", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3a2084188b00fbb623bd37ce1666c56e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000392-0000000000000902-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "920655de-41a7-4bb8-995f-d016a56e3e7c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a76188df-85bc-4fd1-8df2-0a352dc6f323", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json index 968b11fc9679..38a8d31d0bda 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "51bcef3a-1423-4f44-bdea-80f5ab510400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "15c37d2d-127f-4b5e-b8d1-f764bac6b50d", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cd6d067309fdf79fc7a14469a1e60099" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000393-0000000000000906-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7eb23982-30fe-47b6-8b53-05d13582c7bc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "070ec09a-ae67-452c-b7c5-0a72d7ae0d36", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json index 81d93e879dd3..7927d95913d3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e05195890400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "05e97a16-19e2-4008-8cfa-b1b4e972c3dd", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b748441acac968abb561573139954822" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000396-0000000000000918-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ae62a94c-930e-49d8-840d-c363982731a6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "973d6448-f2b6-4dfb-bcd1-002d91c02934", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json index 8effcef728ed..027373497892 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a668c3ef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "43e4773f-6e45-46f7-941f-171f8cd0d849", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b748441acac968abb561573139954822" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000397-0000000000000922-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ff4c5f8b-ec85-43cf-b3a5-ae63ce13344a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "003cd8db-ae3b-472e-b64f-c376177ea893", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json index 21778511185e..428589107dc5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "30b253dc-ec45-4177-a6af-07c560330600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "930daabd-de9c-473f-88a5-6d65003647ea", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5666bd084b5377efc9af0f8dd722e62b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000398-0000000000000926-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "493683b2-26b3-48e1-9b8f-c24bf3382127", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e562330-1e83-4865-9ea3-9ce825c6b365", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json index 0aac6284291d..10d1132b163a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "2b8972aa-1ab4-4270-9e7d-45c73a7d0f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "ad6dc9e5-75dd-4ae1-93e1-42a4ab215bc7", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ab9960d541e7c4bd338117cb7daf5920" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000385-0000000000000874-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b4a463be-c8c8-408d-94cb-5c3f581ed9c2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5af52c4c-fedd-486a-b540-14cbfe9f8b3c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json index a47ee5707ccd..3c0615fba553 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a6689aef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "709a75cb-4171-4884-869d-32399065e7eb", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "0e1b2a9dcd3d5fcaf9d7b9f44a56b3fd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000386-0000000000000878-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "58e0d40c-da90-49d4-a226-55c2c2dcbacf", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "143f85cb-4388-462b-a57f-157d590cc3bc", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json index 3f78969476a9..01fd42956f6a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a66883ef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "fcc3fcd0-553f-4aef-82f9-0dd7b9799c61", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "47884ef2981b03ff59ce02b82a931678" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000381-0000000000000858-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b50a4e0a-aa1b-4b3a-a90c-2323960f757a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "38b6242e-fae1-45d3-adfc-14eea1e79341", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json index 3f0c20c4708d..e7860859f029 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "14ec9927-5649-462a-b621-180917b10e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "60a88150-fd1e-4f04-a47a-fd7d9730631a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "caf1393d64f58fff7dfb3e2d5e88900d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000382-0000000000000862-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9e4ac89d-d28b-4a98-a217-c8c39c498e67", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4be7da97-2e15-4dc4-acd3-25e84fc8fdac", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json index 7c0cdc7039f5..5a35c9887fad 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-50459d380700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "1c798627-1fd3-41c9-9a13-26f84e573d6a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cf86e2d033b790043263dc6047ead0c2" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000383-0000000000000866-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3ffc696c-2439-4ec3-8837-4345cf94da18", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a8136d8d-1591-402a-97b0-51f46da9731c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json index 6104ab315e82..7068e983bc1f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a66892ef0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "c543219a-4377-4d37-b02a-4e4969ddfb8c", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ba85026ec528be77d06677cb0241bf4b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000384-0000000000000870-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5bce7f04-ecfd-4379-af4d-19255937d114", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb59add3-5a5e-4c26-bf63-23429988cf49", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json index 02d68f83ff18..189d88106dbc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "e7966275-721e-4837-aa23-8edf72800400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "3b67170b-957f-47e8-821f-f0232c404f10", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "efeafd6bc19716841855e51f9bfcaae5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000387-0000000000000882-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dbe64a7c-409e-470f-8622-a5a7302daa26", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1073200d-57af-43c7-87b8-90a26b97e7bf", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json index aa6e1ea88e70..3607692afd99 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "06d03ac3-c989-4eee-bc78-cd183dff0d00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "30c45233-f3ee-4ac8-8477-f008063effcf", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "efeafd6bc19716841855e51f9bfcaae5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000388-0000000000000886-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "203609a6-c310-4355-ad3a-d6c042ec24f3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be57a2de-528e-4fe2-997f-dc5b80fe2d61", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json index f88964ca124c..abee4cf1383b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json @@ -1,52 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "ffae8c06-3c09-4510-8736-8553ca0b0f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "18ad37d7-a1d6-4052-973a-b347223b62f2", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:56:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "44c2300ce411e8279dc446b4136bb8d1" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000389-0000000000000890-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "21445ad9-17d6-46c1-b4d7-0a040c39ef87", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c40fb7b-e0e6-496d-8371-f9210e4cc8c7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:15:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json index ffd255e22367..90a1fee7d49c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json @@ -1,239 +1,955 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:56 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "2b8972aa-1ab4-4270-9e7d-45c737890f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "2ede5cf6-ee32-4f98-91ae-da2b26b41974", - "date": "Sat, 23 Oct 2021 00:58:56 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "509" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:58:57Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "e15f94b5-55da-4da1-a464-5bc625ef8683", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:58:57Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "eae801ba-a986-4343-8716-7249aba9fe8b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:58:59Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "dada0ba0-5918-4987-bf38-86eb0aa33fed", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "178" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:58:59Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "eaa403f3-18b8-492d-8208-77f4e2db0885", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:59:03Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "441f53d7-383d-4252-8499-40f5f2267975", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "176" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:59:04Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:04.6365453Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "a5ae6636-3bc1-4b58-a200-18d531181844", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "409" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:59:04Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:04.6365453Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "10946843-3a05-4ae9-b0c0-793bc2e2270f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "433" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:59:04Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:04.6365453Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "f3a0122c-1b3b-46a8-b5d4-b6291e1b6473", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "173" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:59:11Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:04.6365453Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:11.5304001Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "ac9dac01-1bac-40e3-aa9a-fd7777ce0f88", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "229" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/20ae90db-262f-4823-a8da-3223a15c0a75", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"20ae90db-262f-4823-a8da-3223a15c0a75\",\"lastUpdateDateTime\":\"2021-10-23T00:59:11Z\",\"createdDateTime\":\"2021-10-23T00:58:56Z\",\"expirationDateTime\":\"2021-10-24T00:58:56Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:04.6365453Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:59.4393234Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:11.5304001Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "ee2e0ddf-0796-4719-92e4-d5b2c15339d3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "231" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "639ee125a50ec5326e37e1bc1f357d53" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "497", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000474-0000000000001106-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4a1bea89-fbfc-4521-87ea-52863224dd8f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "15d03a5b-176c-45fa-bdda-c8fffa66dbf4", + "Date": "Fri, 18 Feb 2022 19:16:51 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "391" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000475-0000000000001108-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "75fdac8e-2ee6-42fe-9680-313454ed8581", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2b95f59-ffb1-4201-b4c4-fd29f2fb535e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:52Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000476-0000000000001110-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bef218ac-245d-43c7-9a53-aaf17e752ab0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d77ec1b-0343-40aa-ad04-3db7bceed3c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:52Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000477-0000000000001112-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "becf96db-c6cb-45e3-bbca-529fb51f3772", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fcac4894-c915-4922-b006-0345ff976ddf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "329" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:54Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:53.9539762Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:54.3151103Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000478-0000000000001114-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c0f238c5-e9a0-421d-92c4-d36a5828f9f6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e83365b5-a824-443a-b056-785050998fdd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:54Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:53.9539762Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:54.3151103Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000479-0000000000001116-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "78690d16-01cd-466c-9d96-ea6c3dd2b27b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "290add15-0250-47ba-82b8-4e9a211c8e93", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:54Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:53.9539762Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:54.3151103Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000480-0000000000001118-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e2ff0256-d952-4fd8-9d66-856e88eba922", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad0d7cc9-2bc0-4600-87c4-29bfe2f3cf9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "342" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:59Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:53.9539762Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:59.7961718Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:54.3151103Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/28e595bf-1a2e-47a9-be6d-59474a4f0fe5?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000481-0000000000001120-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cd279187-7727-46b8-96a0-a0191707a3e0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19a42fed-c5a8-4b4c-9517-3acea182956a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "229" + }, + "ResponseBody": { + "jobId": "28e595bf-1a2e-47a9-be6d-59474a4f0fe5", + "lastUpdateDateTime": "2022-02-18T19:16:59Z", + "createdDateTime": "2022-02-18T19:16:52Z", + "expirationDateTime": "2022-02-19T19:16:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:53.9539762Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:59.7961718Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:54.3151103Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json index 9d00d1b27571..5928c65af8e9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json @@ -1,49 +1,70 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-504568480700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Document text is empty.\"}}}", - "responseHeaders": { - "apim-request-id": "8d9239a9-1786-472a-ab4a-794edbaf5610", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f9f441a825a1fe550fcd21e25757994a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "186", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000465-0000000000001084-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bbc6fefa-7ca4-49be-a17f-25dcf0b1fc0a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "c2a9c221-7e38-406b-8ac1-afef5b930443", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Document text is empty." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json index c04486aa7fac..764d4292b0ff 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json @@ -1,49 +1,75 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:06:37 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "c0f3fa49-0c82-448c-b6c6-8c1f8d4bad00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}},{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"InvalidTask in AnalyzeInput\",\"innererror\":{\"code\":\"InvalidRequestBodyFormat\",\"message\":\"Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name\"}}}", - "responseHeaders": { - "apim-request-id": "18fc4c1b-49f4-4dff-81e3-470df2fd2056", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:06:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b622bb90bc1506f299109d6581856a55" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "268", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000564-0000000000001312-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "052fe595-6c78-44e7-aaaf-e92346e91ed9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "67dc087f-e35c-44e8-a19f-ab3970cd41ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "InvalidTask in AnalyzeInput", + "innererror": { + "code": "InvalidRequestBodyFormat", + "message": "Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json index 303d83c9f0f2..712325c28e90 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json @@ -1,239 +1,748 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:15 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "018fb3e8-6ee3-4a0f-9273-c76c49b40300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "fc72b473-56af-4c56-8c7f-de5deded8335", - "date": "Sat, 23 Oct 2021 01:00:15 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "370" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:16Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "e957b3ef-a9af-4429-bbcb-80e8c3f46f96", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:16Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "69f99085-2fb3-49be-96c8-dde43b22869d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:16Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "a4dddf4a-45b5-4bee-b614-0d4fa7985707", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:16Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "e7611be1-cc9f-442e-b74d-05433c0bf1cc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:22Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "ca87bc1c-02cb-4131-81e9-7271c6c021e5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:23Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:23.530149Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "a705468a-c06a-4959-a148-2c53b88d5edc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "139" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:24Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:24.9401154Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:23.530149Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "09d15f4c-22ef-4f5d-a08f-6eb3414377da", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "163" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:24Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:24.9401154Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:23.530149Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "5c7baafa-595a-41b7-b1d1-7b4f775e9b4e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "210" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:30Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:24.9401154Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:23.530149Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:30.3329133Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "36f1cc02-3730-4c8e-836d-33f01a73e1f2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "315" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9fbbce18-fe53-4448-a35e-09117d22b266", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9fbbce18-fe53-4448-a35e-09117d22b266\",\"lastUpdateDateTime\":\"2021-10-23T01:00:30Z\",\"createdDateTime\":\"2021-10-23T01:00:15Z\",\"expirationDateTime\":\"2021-10-24T01:00:15Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:24.9401154Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:23.530149Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:30.3329133Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "89bfc23a-3530-4d57-a948-a02965a88f6b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "201" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e1bf903c26b110c408cc16efec7b6dba" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "510", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000510-0000000000001188-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "62e6571d-9f0f-4c3c-9c99-9d45f661ede0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e2a9decb-852a-4a26-aa23-754ae5ca7df5", + "Date": "Fri, 18 Feb 2022 19:17:35 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "208" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000511-0000000000001190-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3b212055-77f1-4cee-b2e8-1b951bedbf4d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6a05769e-bc29-469f-aa48-d019f8236af0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:36Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000512-0000000000001192-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cf24f4d6-8ebb-4b52-ab6a-a1d1ca2f5365", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e27a8061-0cde-485d-8313-e28d19db7e4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:36Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000513-0000000000001194-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "60d19ace-a518-46e3-be5c-facb5f67cf51", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0cf3a13f-af8b-411c-ad90-c77c638f3ec5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "97" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:38Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:38.0326183Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000514-0000000000001196-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d0443536-1aae-48e9-8df4-0959e4ecf748", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "078c484e-1db8-49eb-abc3-db6a1effc605", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:38Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:38.0326183Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000515-0000000000001198-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5fe6a7d8-6805-4e84-8500-5c72d431c56a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "93bf9b7d-a7db-4ba5-98b8-65eef5c13dcc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:38Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:38.0326183Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000516-0000000000001200-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e1e6b8c2-27ef-4e93-880a-9e207ef57a2c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4dda8213-b823-4f93-a14e-86ba7dc1c978", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:43Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:43.8202251Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:43.832734Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:38.0326183Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a1bb2bd-a773-4432-b38f-095c760b54e0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000517-0000000000001202-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ed798c89-1415-49dd-83fa-43373f4d2954", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b6396df-b8ee-4317-af85-79c3f4e5aa82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "179" + }, + "ResponseBody": { + "jobId": "1a1bb2bd-a773-4432-b38f-095c760b54e0", + "lastUpdateDateTime": "2022-02-18T19:17:43Z", + "createdDateTime": "2022-02-18T19:17:36Z", + "expirationDateTime": "2022-02-19T19:17:36Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:43.8202251Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:43.832734Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:38.0326183Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json index 507a9f3ad30a..8c565f89ef9d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json @@ -1,144 +1,442 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:23 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "404352a4-c3cd-44cb-b789-2b268e6f0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"UnicodeCodePoint\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "71856f3e-a088-4daf-8782-99010cdfc1fc", - "date": "Sat, 23 Oct 2021 01:01:23 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/68dd836b-0634-4245-898a-0c660b72f72d", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "199" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/68dd836b-0634-4245-898a-0c660b72f72d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"68dd836b-0634-4245-898a-0c660b72f72d\",\"lastUpdateDateTime\":\"2021-10-23T01:01:23Z\",\"createdDateTime\":\"2021-10-23T01:01:23Z\",\"expirationDateTime\":\"2021-10-24T01:01:23Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "b9dd1165-5f96-492c-b504-a6f5a02fe0e1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/68dd836b-0634-4245-898a-0c660b72f72d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"68dd836b-0634-4245-898a-0c660b72f72d\",\"lastUpdateDateTime\":\"2021-10-23T01:01:23Z\",\"createdDateTime\":\"2021-10-23T01:01:23Z\",\"expirationDateTime\":\"2021-10-24T01:01:23Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "7cab19a6-a0d7-477b-a5a8-b281d7e53c73", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/68dd836b-0634-4245-898a-0c660b72f72d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"68dd836b-0634-4245-898a-0c660b72f72d\",\"lastUpdateDateTime\":\"2021-10-23T01:01:24Z\",\"createdDateTime\":\"2021-10-23T01:01:23Z\",\"expirationDateTime\":\"2021-10-24T01:01:23Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "9687955f-adc2-4f4d-a0d6-f70cbe23cb05", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/68dd836b-0634-4245-898a-0c660b72f72d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"68dd836b-0634-4245-898a-0c660b72f72d\",\"lastUpdateDateTime\":\"2021-10-23T01:01:26Z\",\"createdDateTime\":\"2021-10-23T01:01:23Z\",\"expirationDateTime\":\"2021-10-24T01:01:23Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:26.030883Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "cd690685-1897-4e50-b20d-d73061a628f7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/68dd836b-0634-4245-898a-0c660b72f72d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"68dd836b-0634-4245-898a-0c660b72f72d\",\"lastUpdateDateTime\":\"2021-10-23T01:01:26Z\",\"createdDateTime\":\"2021-10-23T01:01:23Z\",\"expirationDateTime\":\"2021-10-24T01:01:23Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:26.030883Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "717d8e47-3299-4a8a-9f54-c4257c3949dc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "51" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "425e31a777619d837f737b23058c4474" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "247", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000555-0000000000001290-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "202dd06e-0800-48f7-99d0-0cca516a9dc0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "59995332-c859-4613-9e58-6ba0434d1925", + "Date": "Fri, 18 Feb 2022 19:18:29 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000556-0000000000001292-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "712128d1-3e11-445b-8372-74a343891cbb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5df0ccec-5c22-4ac9-b3bc-8b89448935f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:29Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000557-0000000000001294-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bc938814-2874-4afe-a0f4-babc2ea101c4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f309c216-260f-4dbc-9f04-22bc13d90b3e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:29Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000558-0000000000001296-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e25db0f3-405e-46bb-9bb9-72d2fdde0b4b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c9430d4-70a6-44ad-be4c-226df183fde7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:29Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000559-0000000000001298-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d66db91b-31e2-4e34-b62f-f5b47a0e9098", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ec87816-4a0d-4894-bfe7-6fd5a130e4e7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:29Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000560-0000000000001300-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "27b359e8-d0b0-486f-a5a8-9d020df432cd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7300e9d6-cf79-4e77-868d-4ed42beac602", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:35 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": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:29Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000561-0000000000001302-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8c4c2d0f-968b-451c-a3eb-ede429b1d369", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75e64df2-e33b-4d5e-b2eb-8e8b73268d38", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:37Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:37.5832307Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f6ae2e4c-2240-406c-98ac-9a538772ff45?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000562-0000000000001304-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c44cbf2e-e3c6-43c1-97b0-759c2abb6c36", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0e7b1cd-983a-4550-b51a-07ca1b817275", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "f6ae2e4c-2240-406c-98ac-9a538772ff45", + "lastUpdateDateTime": "2022-02-18T19:18:37Z", + "createdDateTime": "2022-02-18T19:18:29Z", + "expirationDateTime": "2022-02-19T19:18:29Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:37.5832307Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json index 56abfc1d703c..f2e2db9a7f81 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json @@ -1,182 +1,402 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a6684a060400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "dbcc6fb5-be92-4abe-b700-98d2614b34a0", - "date": "Sat, 23 Oct 2021 01:00:47 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "347" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:48Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "27b82a8f-583d-4551-8b1b-606a592ceaaa", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:48Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "76e0b31d-e36e-4ad1-ba9b-88fac094bb5b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:49Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:49.7945156Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "27a23a61-76a5-466f-b292-d5855d4d152a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "142" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:49Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:49.7945156Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "17e02d84-79f5-4aaf-a169-0c2b7be92e74", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:54Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:49.7945156Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "89514856-8f12-496e-8f0e-b4f2b1c96e5d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:56Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:56.51127Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:49.7945156Z\",\"state\":\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:55.7587677Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "6209cdaf-2e60-4114-93fa-6fdd139627fa", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "388" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9679ca80-da01-48af-b191-6bef4d9cdf7a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9679ca80-da01-48af-b191-6bef4d9cdf7a\",\"lastUpdateDateTime\":\"2021-10-23T01:00:56Z\",\"createdDateTime\":\"2021-10-23T01:00:47Z\",\"expirationDateTime\":\"2021-10-24T01:00:47Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:56.51127Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:49.7945156Z\",\"state\":\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:55.7587677Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "9e9bd0bb-adb1-4e71-aae4-4e05f94d2046", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "259" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "55a9332c301d4649020961749a1eefec" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "436", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000526-0000000000001224-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "21a0d088-6bad-42f7-be25-56308d4a2351", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "38efaa1e-9fb9-4e53-bef0-22716e3a106e", + "Date": "Fri, 18 Feb 2022 19:17:56 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5d77ea6c-719f-4afc-a5de-f9b1d5a14df7", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "175" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5d77ea6c-719f-4afc-a5de-f9b1d5a14df7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000527-0000000000001226-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3cf52eac-e1e3-4adc-b877-b6cb7d62d36c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f6bbe8d-beb8-4cfc-815b-ec84deb99357", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "5d77ea6c-719f-4afc-a5de-f9b1d5a14df7", + "lastUpdateDateTime": "2022-02-18T19:17:56Z", + "createdDateTime": "2022-02-18T19:17:56Z", + "expirationDateTime": "2022-02-19T19:17:56Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5d77ea6c-719f-4afc-a5de-f9b1d5a14df7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000528-0000000000001228-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d6d3dcb4-a70b-4d52-9f01-463aecd16904", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c88b17c-f41d-4f7d-8c02-fe804ca56bf4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "5d77ea6c-719f-4afc-a5de-f9b1d5a14df7", + "lastUpdateDateTime": "2022-02-18T19:17:56Z", + "createdDateTime": "2022-02-18T19:17:56Z", + "expirationDateTime": "2022-02-19T19:17:56Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5d77ea6c-719f-4afc-a5de-f9b1d5a14df7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000529-0000000000001230-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2970c135-df31-40df-8694-653fd60b0224", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "95df47c2-e0c0-435a-b9cd-83eabef81b8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" + }, + "ResponseBody": { + "jobId": "5d77ea6c-719f-4afc-a5de-f9b1d5a14df7", + "lastUpdateDateTime": "2022-02-18T19:17:58Z", + "createdDateTime": "2022-02-18T19:17:56Z", + "expirationDateTime": "2022-02-19T19:17:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:58.3715282Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:58.3351715Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:58.2344164Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5d77ea6c-719f-4afc-a5de-f9b1d5a14df7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000530-0000000000001232-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ff73a8d2-d87a-4ac8-87c6-cf51eec0325a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "95147bfd-f66e-433b-acd2-ab4aedef6151", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": { + "jobId": "5d77ea6c-719f-4afc-a5de-f9b1d5a14df7", + "lastUpdateDateTime": "2022-02-18T19:17:58Z", + "createdDateTime": "2022-02-18T19:17:56Z", + "expirationDateTime": "2022-02-19T19:17:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:58.3715282Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:58.3351715Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:58.2344164Z", + "state": "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json index 2342e9044900..19a7bfb890a7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json @@ -1,49 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:27 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a668260a0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"bad\",\"stringIndexType\":\"TextElement_v8\"}}]}}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15.\"}}}", - "responseHeaders": { - "apim-request-id": "0ee54552-f425-4390-bea6-0f9c353df798", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "35683911136f1ebaf864ca74c3f0b597" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "190", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000563-0000000000001308-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "16484651-42c4-44b9-b36c-aec8103f300b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "bad", + "stringIndexType": "TextElement_v8" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "8e094ac2-43c7-409b-aba0-161324280ed4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json index c3d9c925d731..315d602a07d9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json @@ -1,106 +1,239 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:20 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-50452a5f0700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"displayName\":\"testJob\",\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "c08b05f8-b8b9-4f6e-9b9c-35e07748dd22", - "date": "Sat, 23 Oct 2021 01:01:20 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/30ee02ac-9e34-44d0-be23-ff8ee8bd9dda", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "235" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/30ee02ac-9e34-44d0-be23-ff8ee8bd9dda", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"30ee02ac-9e34-44d0-be23-ff8ee8bd9dda\",\"lastUpdateDateTime\":\"2021-10-23T01:01:20Z\",\"createdDateTime\":\"2021-10-23T01:01:20Z\",\"expirationDateTime\":\"2021-10-24T01:01:20Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "935ce334-9609-4ef5-b337-d0c031a7f998", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/30ee02ac-9e34-44d0-be23-ff8ee8bd9dda", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"30ee02ac-9e34-44d0-be23-ff8ee8bd9dda\",\"lastUpdateDateTime\":\"2021-10-23T01:01:21Z\",\"createdDateTime\":\"2021-10-23T01:01:20Z\",\"expirationDateTime\":\"2021-10-24T01:01:20Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "f2afc66c-19a6-4271-9982-30864c9d6b3c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/30ee02ac-9e34-44d0-be23-ff8ee8bd9dda", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"30ee02ac-9e34-44d0-be23-ff8ee8bd9dda\",\"lastUpdateDateTime\":\"2021-10-23T01:01:23Z\",\"createdDateTime\":\"2021-10-23T01:01:20Z\",\"expirationDateTime\":\"2021-10-24T01:01:20Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:23.1426601Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "29615610-b6f6-42a1-a442-32a87c33523b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f1824e388e5e072cfa6552fb3e25e68c" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "71c6a91d-d5e5-4a8f-b796-8c851ce08806", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "displayName": "testJob", + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "eaeea269-6996-468f-9e10-cd60e781a172", + "Date": "Fri, 18 Feb 2022 19:38:48 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5ed03f0-8841-4135-a398-fb2556258486", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "148" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5ed03f0-8841-4135-a398-fb2556258486?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1c66fb1c-7087-48f2-9678-ad6ce0e1cb67", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bde9743-70f2-4c24-b5fb-ed95a9483c8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f5ed03f0-8841-4135-a398-fb2556258486", + "lastUpdateDateTime": "2022-02-18T19:38:49Z", + "createdDateTime": "2022-02-18T19:38:48Z", + "expirationDateTime": "2022-02-19T19:38:48Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5ed03f0-8841-4135-a398-fb2556258486?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "50bd94b5-e5f9-430f-baf6-2c4622ba06f1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "375686ce-aae3-400a-9ee1-a0e8613afeef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f5ed03f0-8841-4135-a398-fb2556258486", + "lastUpdateDateTime": "2022-02-18T19:38:49Z", + "createdDateTime": "2022-02-18T19:38:48Z", + "expirationDateTime": "2022-02-19T19:38:48Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5ed03f0-8841-4135-a398-fb2556258486?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3ff2bef8-ba70-4a00-b149-9b4b9688565d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "340aa257-b367-43a2-a6a3-fefc11644bca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "f5ed03f0-8841-4135-a398-fb2556258486", + "lastUpdateDateTime": "2022-02-18T19:38:50Z", + "createdDateTime": "2022-02-18T19:38:48Z", + "expirationDateTime": "2022-02-19T19:38:48Z", + "status": "succeeded", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:38:50.6516702Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json index fbecfb988f74..10f22e72bc35 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json @@ -1,201 +1,847 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:30 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "14ec9927-5649-462a-b621-18098fc10e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"w\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "cf9d7cda-63be-4f88-b349-e1b0ff5cb38c", - "date": "Sat, 23 Oct 2021 00:59:30 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "441" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:31Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "708b0094-6977-4c30-9a5e-3e5c7ecd87c2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:31Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "ec73d425-19cd-4df3-8541-7e833daa77a6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:31Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "963e0941-790d-4d5a-8f6b-109166a8fce2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:31Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "815a846e-da4a-41e7-affd-fe49fe174328", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:37Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "c920b455-91ab-41e0-8d6b-78053f187115", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:37Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "98c969a7-5ada-49bb-9103-fc355dd78452", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:41Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:40.1037356Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:39.540464Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:41.3456302Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "cd771044-ed67-433b-a0ea-a0d67731e521", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "408" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dc51b9a2-9b6f-4e57-aa69-625b5aa24ad1\",\"lastUpdateDateTime\":\"2021-10-23T00:59:41Z\",\"createdDateTime\":\"2021-10-23T00:59:30Z\",\"expirationDateTime\":\"2021-10-24T00:59:30Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:40.1037356Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:39.540464Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:41.3456302Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "0497ea90-6756-4b35-9efe-d5b93b690ad4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "389" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "84b42092dc8ed307528865ff9b444fa7" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "440", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000490-0000000000001142-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ed2cd1f3-67a5-4f52-a50c-1b488a92daba", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "w" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "92a3a175-d693-44d6-9649-dbf3c6aa659e", + "Date": "Fri, 18 Feb 2022 19:17:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "272" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000491-0000000000001144-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "78dd532b-31c0-45c1-9ade-9b68af66fe96", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b0869f86-4e49-470e-8287-cecbc0ef0ee4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:13Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000492-0000000000001146-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5e64c959-8fab-407d-b2c8-e745deb062d6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "587c907a-acba-4a81-942b-9b6dcb721580", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:14Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000493-0000000000001148-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "43082125-2c7c-47eb-9548-e6647ede8aff", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c66dfa44-5086-4464-a80c-c15e2d5ee00a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:15Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:15.5116339Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000494-0000000000001150-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4d2dbe66-2463-4d58-979c-2167f8de4d73", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb7b3943-ecb9-439a-b55c-82b63ce2fb80", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:16Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:15.5116339Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:16.7616029Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000495-0000000000001152-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7d9aa42e-a91d-4b65-b7ed-80340ca9a882", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e3f6df88-ff50-43b7-bb39-eeceed0a3944", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:16Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:15.5116339Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:16.7616029Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000496-0000000000001154-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4c665106-4c0a-453e-8fb7-876d42a117b7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1cbdf683-ef5f-4cbf-9727-5363e735f0a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "537" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:22Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:15.5116339Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:16.7616029Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:22.1652146Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa0adb3-e163-4358-b956-443d76fa0d81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000497-0000000000001156-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dd18a7ba-208a-44d8-937a-3781fec2ad05", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a03f294e-d6de-40cc-9b95-def7fa043e18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "174" + }, + "ResponseBody": { + "jobId": "0aa0adb3-e163-4358-b956-443d76fa0d81", + "lastUpdateDateTime": "2022-02-18T19:17:22Z", + "createdDateTime": "2022-02-18T19:17:13Z", + "expirationDateTime": "2022-02-19T19:17:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:15.5116339Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:16.7616029Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:22.1652146Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json index 7179b130701a..283823efc197 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json @@ -1,239 +1,948 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:13 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "efcc41dd-167d-428c-b3f9-ad32dcf90600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "c64c4a7b-37dd-45a6-89e8-2c69bc0ef6ad", - "date": "Sat, 23 Oct 2021 00:59:14 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "523" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:14Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "c6cba1a1-8681-483c-85f0-6d6f4e446f44", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:14Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "eb2345df-4755-4ac4-bd23-8e90b2cf7e67", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:14Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "bbd9725a-87e9-4743-ab46-0acdfc8065d8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:17Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "8049be6a-d088-4021-99ea-bd0ab33d5885", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:20Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "51d29507-e8b1-4ec6-9d23-b54d8d529e6d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "112" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:20Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "ae92bc05-7496-4047-8f8f-e15d87b9abc2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "208" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:20Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "c3e665a8-a40c-447b-b032-0091f991df15", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:20Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "a5463252-8a2f-4ffd-84ad-6551eaf2a912", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "110" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:29Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:29.4273206Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:29.4096162Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "5bbfac0f-a0da-4320-a4b2-5598546815b4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "310" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/51884c1b-eb31-41ac-8955-4170bc0262c6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"51884c1b-eb31-41ac-8955-4170bc0262c6\",\"lastUpdateDateTime\":\"2021-10-23T00:59:29Z\",\"createdDateTime\":\"2021-10-23T00:59:14Z\",\"expirationDateTime\":\"2021-10-24T00:59:14Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:29.4273206Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:17.5047377Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:29.4096162Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "d5a28b50-759e-486a-913d-d2cb331a7193", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "238" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5dc913127fdc043848daa5f60c21d6db" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "447", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000482-0000000000001124-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e3db88c8-34e1-42bc-baee-f35223502e97", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "fc33a4f7-f697-40de-9b9b-5256091b5de6", + "Date": "Fri, 18 Feb 2022 19:17:02 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "364" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000483-0000000000001126-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "32cb62ee-88b8-40a1-bfc6-d08c95e6e929", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ebe63b0-b3e8-424d-86f1-1807672c73cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:03Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000484-0000000000001128-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d1b6d3eb-8a67-44ed-9740-2c8adef66da9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a609ebf6-eec8-4e39-8941-c17a9468035d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:03Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000485-0000000000001130-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "414ecf27-446e-4e52-9103-030787177e04", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c0b23b8-764b-42f8-a370-9ad86cfbf0ee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:03Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000486-0000000000001132-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f059e385-5737-4606-9d47-258f742fbca8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcf2cc41-a8b5-4ba1-97dd-a9e5a9e2b6bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "227" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:06Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:06.3129691Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000487-0000000000001134-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "90bd1561-2913-4146-aa30-59306ce610b0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bcacf00a-5618-4bbe-a50f-f528254f82d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:09Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:06.3129691Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:08.2940938Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000488-0000000000001136-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0119e49f-35c5-4bdd-99c5-1fde96acc889", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30514c13-78de-4632-920f-6d139f1ce61f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:11Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:06.3129691Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:08.2940938Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:11.3972976Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5472bfde-91c4-4955-bf25-2f9937599c26?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000489-0000000000001138-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5ed919ff-1b14-49be-9a51-c082f4b435be", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c8c5746d-92e8-4ad8-ab48-eed5d64aa9cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" + }, + "ResponseBody": { + "jobId": "5472bfde-91c4-4955-bf25-2f9937599c26", + "lastUpdateDateTime": "2022-02-18T19:17:11Z", + "createdDateTime": "2022-02-18T19:17:03Z", + "expirationDateTime": "2022-02-19T19:17:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:06.3129691Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:08.2940938Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:11.3972976Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json index a15e7c887222..f7b57ec7da09 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json @@ -1,279 +1,1674 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:57 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e4d540300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "42ceee1d-1e8b-45fd-8fe9-dea75934b6dd", - "date": "Sat, 23 Oct 2021 01:00:58 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1121" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:00:58Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "35698ecf-a6ab-4cbb-8ab3-a2f6d634a5a8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:00:58Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "8e3a4f88-3615-4d87-9401-b1a2c2cc0232", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:00:58Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "8c66c7d9-d8a2-4dd5-ae2c-1c5c80529380", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:00:58Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "b5811d55-555a-43a1-a9a3-4120d518697a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:00:58Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "212faae4-98cd-44b0-8a8c-5b6a521a7167", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:06Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "935c82c6-9e6d-477e-8dbf-887b3c212ecc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:08Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "b3cfc4b1-7f2c-4f7c-bf0d-12c02343f46f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:09Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:09.28626Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f?$skip=20&$top=5&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "3e48de6c-61bf-490d-b10e-859d302304a0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "268" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:11Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:09.28626Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:11.5184001Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f?$skip=20&$top=5&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "c7bfab0e-69d7-4ec4-b2eb-e17504ad010c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1094" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$top": "10", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:11Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:09.28626Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:11.5184001Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f?$skip=10&$top=10&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "1a29e890-7aff-444c-b5f1-7feb336239b2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "360" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$skip": "10", - "$top": "10", - "showStats": "False" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:11Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:09.28626Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:11.5184001Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f?$skip=20&$top=5&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "512d7d7d-7021-41d1-8465-5abf30dad44f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "337" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a366a186-ed32-4c69-909e-81d864ce426f", - "query": { - "$skip": "20", - "$top": "5", - "showStats": "False" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a366a186-ed32-4c69-909e-81d864ce426f\",\"lastUpdateDateTime\":\"2021-10-23T01:01:11Z\",\"createdDateTime\":\"2021-10-23T01:00:57Z\",\"expirationDateTime\":\"2021-10-24T01:00:57Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:09.28626Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"entities\":[],\"warnings\":[]},{\"id\":\"21\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"23\",\"entities\":[],\"warnings\":[]},{\"id\":\"24\",\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:11.5184001Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"21\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"23\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"24\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "9c98c0b7-350a-4c30-8ef5-5ca96ee26483", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "181" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "30b03dcad6187befc593b2ce7185c84e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "1471", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000531-0000000000001236-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9a5d38c5-9339-4452-81c9-a5a00d956bf8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + }, + { + "id": "11", + "text": "random text", + "language": "en" + }, + { + "id": "12", + "text": "random text", + "language": "en" + }, + { + "id": "13", + "text": "random text", + "language": "en" + }, + { + "id": "14", + "text": "random text", + "language": "en" + }, + { + "id": "15", + "text": "random text", + "language": "en" + }, + { + "id": "16", + "text": "random text", + "language": "en" + }, + { + "id": "17", + "text": "random text", + "language": "en" + }, + { + "id": "18", + "text": "random text", + "language": "en" + }, + { + "id": "19", + "text": "random text", + "language": "en" + }, + { + "id": "20", + "text": "random text", + "language": "en" + }, + { + "id": "21", + "text": "random text", + "language": "en" + }, + { + "id": "22", + "text": "random text", + "language": "en" + }, + { + "id": "23", + "text": "random text", + "language": "en" + }, + { + "id": "24", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d2f02967-9870-4b14-9705-d5ece061999b", + "Date": "Fri, 18 Feb 2022 19:18:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "682" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000532-0000000000001238-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b3411b31-af8c-48b5-a7b4-9df86d6cc476", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d132f5d-91c4-4259-adfa-81f95c1672f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:00Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000533-0000000000001240-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "76990695-752f-49eb-a6b0-9ff86d6642be", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55576184-49c9-45eb-87c8-a58929a39de0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:00Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000534-0000000000001242-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "26fa4a41-968d-4af6-9312-436b58ff76ce", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3b5f312-c03d-414a-89c8-ac935df2fdc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:00Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000535-0000000000001244-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "76f5a92d-8672-48f0-8c2d-dc59ceb99177", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3b7ac27-31a8-4ca0-b1d1-8d4e7deb4cb1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:00Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000536-0000000000001246-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "528268fd-acd8-4469-a2ed-006b0776b76a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c7e1f954-bcd1-4b9d-be3e-f7de7ae909f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:06Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000537-0000000000001248-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "55f446a2-e43a-4ec9-aba2-d04e47baf01f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7532e285-32c1-4b34-a9a9-1a2540837b88", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "385" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:08Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:08.620137Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000538-0000000000001250-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d3ac8573-01b5-471c-842f-e0044e59b76e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b052f19-2a57-4391-83a3-02e6923fc0ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "304" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:11Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:08.620137Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000539-0000000000001252-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3a1a028c-91f7-4025-866c-21abea4df739", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b11da95c-a8d3-4c67-9922-24b1070d2388", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "366" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:11Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:11.8457016Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + }, + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:08.620137Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$top=10\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000540-0000000000001254-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "757d683e-5971-49dd-89f8-1496d1b3ef80", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1597149b-2bd7-4f3e-8116-91fea4e36352", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "342" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:11Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:11.8457016Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:08.620137Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=10\u0026$top=10\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=10\u0026$top=10\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000541-0000000000001256-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bc01730c-5140-4d15-9333-633882eeb866", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d514905-bcdf-4a3e-9606-a278a997a346", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "270" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:11Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:11.8457016Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:08.620137Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5f4726ac-136a-4b65-992c-448b4066bc92?$skip=20\u0026$top=5\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000542-0000000000001258-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "57ee5df2-12a1-4896-8948-94090e785cc7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15e98def-feb2-4ec9-bc99-0da5da519bbf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "172" + }, + "ResponseBody": { + "jobId": "5f4726ac-136a-4b65-992c-448b4066bc92", + "lastUpdateDateTime": "2022-02-18T19:18:11Z", + "createdDateTime": "2022-02-18T19:17:59Z", + "expirationDateTime": "2022-02-19T19:17:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:11.8457016Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "entities": [], + "warnings": [] + }, + { + "id": "21", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "23", + "entities": [], + "warnings": [] + }, + { + "id": "24", + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:08.620137Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "21", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "23", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "24", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json index 9f995e294b19..2ec3794b0598 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json @@ -1,144 +1,457 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:15 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-5045345e0700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "947daf9a-2cca-463a-8f87-d231164b9222", - "date": "Sat, 23 Oct 2021 01:01:15 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36adacc3-598a-4a85-9d1e-7303ec98470b", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "244" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36adacc3-598a-4a85-9d1e-7303ec98470b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36adacc3-598a-4a85-9d1e-7303ec98470b\",\"lastUpdateDateTime\":\"2021-10-23T01:01:16Z\",\"createdDateTime\":\"2021-10-23T01:01:15Z\",\"expirationDateTime\":\"2021-10-24T01:01:15Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "65ded030-10a1-43d4-950f-03cd889a74c1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36adacc3-598a-4a85-9d1e-7303ec98470b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36adacc3-598a-4a85-9d1e-7303ec98470b\",\"lastUpdateDateTime\":\"2021-10-23T01:01:16Z\",\"createdDateTime\":\"2021-10-23T01:01:15Z\",\"expirationDateTime\":\"2021-10-24T01:01:15Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "d895c565-5573-4269-a709-77224ba1c447", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36adacc3-598a-4a85-9d1e-7303ec98470b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36adacc3-598a-4a85-9d1e-7303ec98470b\",\"lastUpdateDateTime\":\"2021-10-23T01:01:16Z\",\"createdDateTime\":\"2021-10-23T01:01:15Z\",\"expirationDateTime\":\"2021-10-24T01:01:15Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "ad8a7aae-0b68-474c-9431-b874cb5f6a98", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36adacc3-598a-4a85-9d1e-7303ec98470b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36adacc3-598a-4a85-9d1e-7303ec98470b\",\"lastUpdateDateTime\":\"2021-10-23T01:01:19Z\",\"createdDateTime\":\"2021-10-23T01:01:15Z\",\"expirationDateTime\":\"2021-10-24T01:01:15Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:19.2490777Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "11e4b666-aa67-4adb-85d4-41240fb7b45e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "73" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36adacc3-598a-4a85-9d1e-7303ec98470b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36adacc3-598a-4a85-9d1e-7303ec98470b\",\"lastUpdateDateTime\":\"2021-10-23T01:01:19Z\",\"createdDateTime\":\"2021-10-23T01:01:15Z\",\"expirationDateTime\":\"2021-10-24T01:01:15Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:01:19.2490777Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "dfd7ebcf-b528-4361-84d9-5fd43882bc66", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cba43b39f6724507a184833865c62707" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "286", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000543-0000000000001262-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8d8c8111-0586-4302-8beb-442ca48cac6b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0d3b0499-9fc2-4d5c-ac00-7db3bbc35633", + "Date": "Fri, 18 Feb 2022 19:18:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000544-0000000000001264-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "882e4b82-e9a2-409e-a6ee-6f7f1e3cce25", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9ab74fe7-af68-4766-bd22-a619b216b17b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:16Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000545-0000000000001266-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a3ffc402-95e3-4cfa-8156-f9a696902793", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cdfdf40e-c07b-4a01-b74e-9ae36aef8c59", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:16Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000546-0000000000001268-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f3e14057-9c81-4174-8fd5-1f915aedca55", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6cdaa7df-cdfb-44f8-9a11-f8e0125a4913", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:16Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000547-0000000000001270-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c0d4f038-9940-4788-bb7c-06d8ab1af2de", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "816ecf64-9ea1-42bc-8657-853d9eb1cde3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:16Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000548-0000000000001272-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f2a3e331-6730-4e20-ae0d-315ad720339e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b9cbd72-f7b2-4a0f-889e-493ca4e74a24", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:16Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000549-0000000000001274-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ffad9408-c1c0-4870-a16c-732acd035366", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7c0bd52-c63f-49df-abe0-a18f9f7f5e89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:23Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:23.9600452Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cc1998a3-dd7d-44df-b82d-713f2034c040?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000550-0000000000001276-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c2271906-580a-46cd-b238-04f4b5c5e6f2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f02d101-c688-4323-bbbd-df18a46e079f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" + }, + "ResponseBody": { + "jobId": "cc1998a3-dd7d-44df-b82d-713f2034c040", + "lastUpdateDateTime": "2022-02-18T19:18:23Z", + "createdDateTime": "2022-02-18T19:18:16Z", + "expirationDateTime": "2022-02-19T19:18:16Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:23.9600452Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json index 0568c27c4240..c4d52b266616 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json @@ -1,125 +1,280 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:57 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "30b253dc-ec45-4177-a6af-07c526340600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"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.\",\"language\":\"en\"}]},\"tasks\":{\"customMultiClassificationTasks\":[{\"parameters\":{\"project-name\":\"project_name\",\"deployment-name\":\"deployment_name\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "27ae1d4c-4351-4a31-8e55-62d3bc28a48f", - "date": "Sat, 23 Oct 2021 00:56:57 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d525f026-922c-48d1-b02e-9682b594df73", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "537" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d525f026-922c-48d1-b02e-9682b594df73", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d525f026-922c-48d1-b02e-9682b594df73\",\"lastUpdateDateTime\":\"2021-10-23T00:56:58Z\",\"createdDateTime\":\"2021-10-23T00:56:58Z\",\"expirationDateTime\":\"2021-10-24T00:56:58Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "60c139c5-b251-466f-88d5-05271c83b4bf", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d525f026-922c-48d1-b02e-9682b594df73", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d525f026-922c-48d1-b02e-9682b594df73\",\"lastUpdateDateTime\":\"2021-10-23T00:56:58Z\",\"createdDateTime\":\"2021-10-23T00:56:58Z\",\"expirationDateTime\":\"2021-10-24T00:56:58Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "d1b89fc5-a554-44d5-9edf-1e2d99dbc677", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d525f026-922c-48d1-b02e-9682b594df73", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d525f026-922c-48d1-b02e-9682b594df73\",\"lastUpdateDateTime\":\"2021-10-23T00:56:59Z\",\"createdDateTime\":\"2021-10-23T00:56:58Z\",\"expirationDateTime\":\"2021-10-24T00:56:58Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customMultiClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:56:59.6098479Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classifications\":[],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "580afb26-fc1f-4511-b875-dc49b9d2a084", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "57" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d525f026-922c-48d1-b02e-9682b594df73", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d525f026-922c-48d1-b02e-9682b594df73\",\"lastUpdateDateTime\":\"2021-10-23T00:56:59Z\",\"createdDateTime\":\"2021-10-23T00:56:58Z\",\"expirationDateTime\":\"2021-10-24T00:56:58Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customMultiClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:56:59.6098479Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classifications\":[],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "feed9dc6-8fe8-4b8d-a5f6-8c965076f23e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "108" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f7018320baace5b2ccad9e798e3906eb" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "484", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "89b25741-5d9b-409e-ae8f-29f6a32da9b3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2b214b10-e667-4853-9807-744ec4dd64a0", + "Date": "Fri, 18 Feb 2022 19:31:58 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ffa49107-67c7-4ab1-9dcc-33476e886190", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "247" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ffa49107-67c7-4ab1-9dcc-33476e886190?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9a714eed-254b-4bc0-b134-97a9cb202d30", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b94b2f7c-69ac-4aa2-a839-da7bd4abca4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "ffa49107-67c7-4ab1-9dcc-33476e886190", + "lastUpdateDateTime": "2022-02-18T19:31:59Z", + "createdDateTime": "2022-02-18T19:31:59Z", + "expirationDateTime": "2022-02-19T19:31:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ffa49107-67c7-4ab1-9dcc-33476e886190?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e821eb3b-1e0a-4773-883b-ecb9de73c845", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "50d14ef3-ec49-4f06-aedb-534137fa29b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "ffa49107-67c7-4ab1-9dcc-33476e886190", + "lastUpdateDateTime": "2022-02-18T19:31:59Z", + "createdDateTime": "2022-02-18T19:31:59Z", + "expirationDateTime": "2022-02-19T19:31:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ffa49107-67c7-4ab1-9dcc-33476e886190?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "98b0d9c5-a24b-4530-a209-82ae68162558", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "91e8e73c-7594-4170-ba03-de355f30414e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:32:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "ffa49107-67c7-4ab1-9dcc-33476e886190", + "lastUpdateDateTime": "2022-02-18T19:31:59Z", + "createdDateTime": "2022-02-18T19:31:59Z", + "expirationDateTime": "2022-02-19T19:31:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:59.9268054Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ffa49107-67c7-4ab1-9dcc-33476e886190?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "28bc73d5-654e-498b-8b12-b05ea63d4f27", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc810672-76c4-47e2-81b5-637f95e8c499", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:32:01 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": "ffa49107-67c7-4ab1-9dcc-33476e886190", + "lastUpdateDateTime": "2022-02-18T19:31:59Z", + "createdDateTime": "2022-02-18T19:31:59Z", + "expirationDateTime": "2022-02-19T19:31:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:59.9268054Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json index 6b0ce4a8f9c2..20cb8c089c33 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json @@ -1,125 +1,240 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:54 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "404352a4-c3cd-44cb-b789-2b26a9500400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"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.\",\"language\":\"en\"}]},\"tasks\":{\"customSingleClassificationTasks\":[{\"parameters\":{\"project-name\":\"project_name\",\"deployment-name\":\"deployment_name\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "f9411a7f-53da-417a-9200-c98e7f9a0544", - "date": "Sat, 23 Oct 2021 00:56:55 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53d0621a-b281-4ed5-8f8d-2e68fc037adf", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "464" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53d0621a-b281-4ed5-8f8d-2e68fc037adf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"53d0621a-b281-4ed5-8f8d-2e68fc037adf\",\"lastUpdateDateTime\":\"2021-10-23T00:56:55Z\",\"createdDateTime\":\"2021-10-23T00:56:55Z\",\"expirationDateTime\":\"2021-10-24T00:56:55Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "0af50f89-a761-4c75-8d33-8c1b94bb6583", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53d0621a-b281-4ed5-8f8d-2e68fc037adf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"53d0621a-b281-4ed5-8f8d-2e68fc037adf\",\"lastUpdateDateTime\":\"2021-10-23T00:56:55Z\",\"createdDateTime\":\"2021-10-23T00:56:55Z\",\"expirationDateTime\":\"2021-10-24T00:56:55Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "cd567ab7-04e9-4e3c-b863-271c5e4a54ba", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53d0621a-b281-4ed5-8f8d-2e68fc037adf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"53d0621a-b281-4ed5-8f8d-2e68fc037adf\",\"lastUpdateDateTime\":\"2021-10-23T00:56:57Z\",\"createdDateTime\":\"2021-10-23T00:56:55Z\",\"expirationDateTime\":\"2021-10-24T00:56:55Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customSingleClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:56:57.1834166Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classification\":{\"category\":\"RateBook\",\"confidenceScore\":0.76},\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "13e635a8-9be7-481e-a044-a41638ead052", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53d0621a-b281-4ed5-8f8d-2e68fc037adf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"53d0621a-b281-4ed5-8f8d-2e68fc037adf\",\"lastUpdateDateTime\":\"2021-10-23T00:56:57Z\",\"createdDateTime\":\"2021-10-23T00:56:55Z\",\"expirationDateTime\":\"2021-10-24T00:56:55Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customSingleClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:56:57.1834166Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classification\":{\"category\":\"RateBook\",\"confidenceScore\":0.76},\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "de9b4f70-6a5d-4d10-820b-5717b808af46", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e184c5d74e207d46fa391f79f2d76cbb" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "485", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "78713852-054a-4766-acf7-78f2baa0731c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "78b73591-30af-48c2-b4fa-a6209a84322d", + "Date": "Fri, 18 Feb 2022 19:31:57 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "243" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b4f0d541-a477-4e83-9170-831a0c5c5d38", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6cfaf6f-4756-42e2-a31b-4664e84d758c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16", + "lastUpdateDateTime": "2022-02-18T19:31:57Z", + "createdDateTime": "2022-02-18T19:31:57Z", + "expirationDateTime": "2022-02-19T19:31:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0f6a7f58-c358-4372-b9fe-885a5af1bbbb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d508a14-bc50-4c1b-bf5f-c844df07bd34", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "jobId": "dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16", + "lastUpdateDateTime": "2022-02-18T19:31:58Z", + "createdDateTime": "2022-02-18T19:31:57Z", + "expirationDateTime": "2022-02-19T19:31:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:58.0986762Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "35d9fd1c-e848-4a64-9391-cd7f5423fa0f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6221042-d3a9-4648-a8d7-e6e46b36ea21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "jobId": "dccc7c16-a6d8-46ec-a9cf-dac38d1a8b16", + "lastUpdateDateTime": "2022-02-18T19:31:58Z", + "createdDateTime": "2022-02-18T19:31:57Z", + "expirationDateTime": "2022-02-19T19:31:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:58.0986762Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json index 5dc6edf3afbb..f250c9c3f76c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json @@ -1,125 +1,461 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:50 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e493d0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"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.\",\"language\":\"en\"}]},\"tasks\":{\"customEntityRecognitionTasks\":[{\"parameters\":{\"project-name\":\"project_name\",\"deployment-name\":\"deployment_name\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "26c6fa5f-5ebb-4b69-8f31-f3620eceacac", - "date": "Sat, 23 Oct 2021 00:56:52 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7c2fee25-531c-4479-b5d4-4f07bc539c99", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "453" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7c2fee25-531c-4479-b5d4-4f07bc539c99", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7c2fee25-531c-4479-b5d4-4f07bc539c99\",\"lastUpdateDateTime\":\"2021-10-23T00:56:52Z\",\"createdDateTime\":\"2021-10-23T00:56:52Z\",\"expirationDateTime\":\"2021-10-24T00:56:52Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "590ed684-4209-4fc2-92c4-b7dec31e213e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7c2fee25-531c-4479-b5d4-4f07bc539c99", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7c2fee25-531c-4479-b5d4-4f07bc539c99\",\"lastUpdateDateTime\":\"2021-10-23T00:56:52Z\",\"createdDateTime\":\"2021-10-23T00:56:52Z\",\"expirationDateTime\":\"2021-10-24T00:56:52Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "de892a14-fa1e-4237-ba38-a152818e7fec", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7c2fee25-531c-4479-b5d4-4f07bc539c99", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7c2fee25-531c-4479-b5d4-4f07bc539c99\",\"lastUpdateDateTime\":\"2021-10-23T00:56:54Z\",\"createdDateTime\":\"2021-10-23T00:56:52Z\",\"expirationDateTime\":\"2021-10-24T00:56:52Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customEntityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:56:54.0570397Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"98-0987\",\"category\":\"timeRange\",\"offset\":4,\"length\":7,\"confidenceScore\":0.55},{\"text\":\"$100\",\"category\":\"timeRange\",\"offset\":27,\"length\":4,\"confidenceScore\":0.15},{\"text\":\"John owes\",\"category\":\"artist\",\"offset\":12,\"length\":9,\"confidenceScore\":0.18},{\"text\":\"Mike\",\"category\":\"artist\",\"offset\":22,\"length\":4,\"confidenceScore\":0.35}],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "5764c693-dec7-41fd-834b-f809942c4739", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7c2fee25-531c-4479-b5d4-4f07bc539c99", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7c2fee25-531c-4479-b5d4-4f07bc539c99\",\"lastUpdateDateTime\":\"2021-10-23T00:56:54Z\",\"createdDateTime\":\"2021-10-23T00:56:52Z\",\"expirationDateTime\":\"2021-10-24T00:56:52Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customEntityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:56:54.0570397Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"98-0987\",\"category\":\"timeRange\",\"offset\":4,\"length\":7,\"confidenceScore\":0.55},{\"text\":\"$100\",\"category\":\"timeRange\",\"offset\":27,\"length\":4,\"confidenceScore\":0.15},{\"text\":\"John owes\",\"category\":\"artist\",\"offset\":12,\"length\":9,\"confidenceScore\":0.18},{\"text\":\"Mike\",\"category\":\"artist\",\"offset\":22,\"length\":4,\"confidenceScore\":0.35}],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "77134912-4c6e-4b96-bf96-8ec193655716", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "63240757f49fb6f3f2c6e3eee2dc656f" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "516", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "789201b0-272d-488b-8a15-0ac7a9d06dc0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "95fa5b23-daa8-44ad-baf9-e7bc88f73a7d", + "Date": "Fri, 18 Feb 2022 19:31:55 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0a8c4052-95c9-45ea-b090-a783a7c57074", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "200" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0a8c4052-95c9-45ea-b090-a783a7c57074?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8b3163f2-2130-4688-9de2-d8c13d8906ba", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b5b348ea-f6e4-4fdc-b75b-5d3b738620cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "0a8c4052-95c9-45ea-b090-a783a7c57074", + "lastUpdateDateTime": "2022-02-18T19:31:55Z", + "createdDateTime": "2022-02-18T19:31:55Z", + "expirationDateTime": "2022-02-19T19:31:55Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0a8c4052-95c9-45ea-b090-a783a7c57074?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "88658856-4f64-4a84-8251-1ed39d29cd3e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c83e2f50-c7a0-4bd0-bfb8-d08471eb81bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "0a8c4052-95c9-45ea-b090-a783a7c57074", + "lastUpdateDateTime": "2022-02-18T19:31:56Z", + "createdDateTime": "2022-02-18T19:31:55Z", + "expirationDateTime": "2022-02-19T19:31:55Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:56.068069Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0a8c4052-95c9-45ea-b090-a783a7c57074?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3f49bbcc-5555-407e-8eed-997dec254b6a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b364af73-30b0-4ebd-a2ff-876104fd546d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "497" + }, + "ResponseBody": { + "jobId": "0a8c4052-95c9-45ea-b090-a783a7c57074", + "lastUpdateDateTime": "2022-02-18T19:31:56Z", + "createdDateTime": "2022-02-18T19:31:55Z", + "expirationDateTime": "2022-02-19T19:31:55Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:56.068069Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json index 73121c72826f..c51e0fee1fb6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json @@ -1,258 +1,572 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b856330600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"Microsoft moved its headquarters to Bellevue, Washington in January 1979.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.\",\"language\":\"en\"}]},\"tasks\":{\"entityLinkingTasks\":[{\"parameters\":{\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "e1044204-48e1-413a-83c7-261be324b823", - "date": "Sat, 23 Oct 2021 00:57:45 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "227" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "8c1178da-8ed2-4f18-b945-75d8aeb574f6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "d27facc6-271d-43d4-828b-99be0287c2fb", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "483bc0a0-b9d5-4441-aa3a-3d98b65649d3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "2fbd5709-a55e-4b21-8a13-325ee55bb947", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "caeba517-37fe-4d78-b047-0724f21f4f9e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "f0a1f0b1-44a5-4113-9101-239ded30e101", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "eae531ac-08e4-4f37-b518-8fd39143f093", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "70a96682-741b-4afa-8029-26339b87cbb3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:57:45Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "148d91cc-36ac-4ca6-8948-ea516b863027", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:58:00Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:00.7197941Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0\",\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"19fb6fb4-3c50-f314-30e4-7b5470e08274\",\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"56ff0719-4791-406b-99de-0e99c3e8cefc\",\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"cf5db860-9fd2-390d-0b6d-5ba856efed49\",\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"e23e51ed-d16f-4800-9a31-ed056168b9a2\",\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "f39e113e-f902-42cd-b560-a754f5e18c1e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fcfdf80b-1cd3-480a-8836-5761a0e9826c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fcfdf80b-1cd3-480a-8836-5761a0e9826c\",\"lastUpdateDateTime\":\"2021-10-23T00:58:00Z\",\"createdDateTime\":\"2021-10-23T00:57:45Z\",\"expirationDateTime\":\"2021-10-24T00:57:45Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:00.7197941Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0\",\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"19fb6fb4-3c50-f314-30e4-7b5470e08274\",\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"56ff0719-4791-406b-99de-0e99c3e8cefc\",\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"cf5db860-9fd2-390d-0b6d-5ba856efed49\",\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"e23e51ed-d16f-4800-9a31-ed056168b9a2\",\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "c69cc1d6-dca3-4090-be10-47727e103fb1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "9c5664a52dc41a919dd18eff3d6b217c" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "346", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000438-0000000000001022-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "00ee3533-2a8c-4eb6-a1ad-e6dbaf065b96", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft moved its headquarters to Bellevue, Washington in January 1979.", + "language": "en" + }, + { + "id": "1", + "text": "Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.", + "language": "en" + } + ] + }, + "tasks": { + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9856b420-96f0-482b-8607-1dfb9702382a", + "Date": "Fri, 18 Feb 2022 19:16:12 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5628004-65d4-48dc-a26f-800e17e6601b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5628004-65d4-48dc-a26f-800e17e6601b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000439-0000000000001024-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "68c34e3c-7026-4fc3-9c1f-1ad3ffe8199c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3a24d070-f34c-45ed-b6d7-e7d4988386ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "f5628004-65d4-48dc-a26f-800e17e6601b", + "lastUpdateDateTime": "2022-02-18T19:16:12Z", + "createdDateTime": "2022-02-18T19:16:12Z", + "expirationDateTime": "2022-02-19T19:16:12Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5628004-65d4-48dc-a26f-800e17e6601b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000440-0000000000001026-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5428e29c-a034-4cb5-907f-11c4ec81a759", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8c3d7ea-4081-4244-bab4-362cafcabf18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f5628004-65d4-48dc-a26f-800e17e6601b", + "lastUpdateDateTime": "2022-02-18T19:16:12Z", + "createdDateTime": "2022-02-18T19:16:12Z", + "expirationDateTime": "2022-02-19T19:16:12Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5628004-65d4-48dc-a26f-800e17e6601b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000441-0000000000001028-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d44d31b6-7a5e-4f99-8221-af9a6f8f1128", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae2002ef-ea8f-4c3d-9999-674ad12f71c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f5628004-65d4-48dc-a26f-800e17e6601b", + "lastUpdateDateTime": "2022-02-18T19:16:12Z", + "createdDateTime": "2022-02-18T19:16:12Z", + "expirationDateTime": "2022-02-19T19:16:12Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5628004-65d4-48dc-a26f-800e17e6601b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000442-0000000000001030-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b80c476e-7036-4503-bf94-ba4003263aa1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc21d5ba-5859-48b3-a2dc-9266c9d613dc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "jobId": "f5628004-65d4-48dc-a26f-800e17e6601b", + "lastUpdateDateTime": "2022-02-18T19:16:16Z", + "createdDateTime": "2022-02-18T19:16:12Z", + "expirationDateTime": "2022-02-19T19:16:12Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:16.7872391Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f5628004-65d4-48dc-a26f-800e17e6601b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000443-0000000000001032-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "36303c47-a83a-4cf4-a283-d908f3306d4b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8814f0db-dde9-4b4d-a693-cfe342848bb8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "f5628004-65d4-48dc-a26f-800e17e6601b", + "lastUpdateDateTime": "2022-02-18T19:16:16Z", + "createdDateTime": "2022-02-18T19:16:12Z", + "expirationDateTime": "2022-02-19T19:16:12Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:16.7872391Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json index 05b1c725c2f8..c694add19d66 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json @@ -1,144 +1,540 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:39 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e051e78f0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.\",\"language\":\"es\"},{\"id\":\"3\",\"text\":\"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.\",\"language\":\"de\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "4d49cac3-1cc5-4c8a-a7d8-85c22c080236", - "date": "Sat, 23 Oct 2021 00:57:40 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8de72ea4-0a19-4a39-aaa9-69885aa8bcc5", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "210" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8de72ea4-0a19-4a39-aaa9-69885aa8bcc5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8de72ea4-0a19-4a39-aaa9-69885aa8bcc5\",\"lastUpdateDateTime\":\"2021-10-23T00:57:40Z\",\"createdDateTime\":\"2021-10-23T00:57:40Z\",\"expirationDateTime\":\"2021-10-24T00:57:40Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "ddeafb06-a97b-4d90-ba52-cf2334425754", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8de72ea4-0a19-4a39-aaa9-69885aa8bcc5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8de72ea4-0a19-4a39-aaa9-69885aa8bcc5\",\"lastUpdateDateTime\":\"2021-10-23T00:57:40Z\",\"createdDateTime\":\"2021-10-23T00:57:40Z\",\"expirationDateTime\":\"2021-10-24T00:57:40Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "cbfb574e-9f8c-4b1a-aee7-e31794352230", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8de72ea4-0a19-4a39-aaa9-69885aa8bcc5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8de72ea4-0a19-4a39-aaa9-69885aa8bcc5\",\"lastUpdateDateTime\":\"2021-10-23T00:57:41Z\",\"createdDateTime\":\"2021-10-23T00:57:40Z\",\"expirationDateTime\":\"2021-10-24T00:57:40Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "54a32cc4-d44b-4610-81f3-b13229596490", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8de72ea4-0a19-4a39-aaa9-69885aa8bcc5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8de72ea4-0a19-4a39-aaa9-69885aa8bcc5\",\"lastUpdateDateTime\":\"2021-10-23T00:57:43Z\",\"createdDateTime\":\"2021-10-23T00:57:40Z\",\"expirationDateTime\":\"2021-10-24T00:57:40Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:43.6121635Z\",\"state\":\"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},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"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},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "f14c0037-671b-4c79-a695-6b4d9f80cc27", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "166" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8de72ea4-0a19-4a39-aaa9-69885aa8bcc5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8de72ea4-0a19-4a39-aaa9-69885aa8bcc5\",\"lastUpdateDateTime\":\"2021-10-23T00:57:43Z\",\"createdDateTime\":\"2021-10-23T00:57:40Z\",\"expirationDateTime\":\"2021-10-24T00:57:40Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:43.6121635Z\",\"state\":\"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},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"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},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "69eb3aa9-75bd-4682-9806-1f016cf4a637", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "120" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "58c31a1268898c94d00c54fe40756a87" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "471", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000432-0000000000001008-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3f48ba29-5d82-4cd8-8143-6f4800821e36", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.", + "language": "es" + }, + { + "id": "3", + "text": "Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegr\u00FCndet.", + "language": "de" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e1d86b6d-f50d-4844-83d8-2d17b6fcba05", + "Date": "Fri, 18 Feb 2022 19:16:07 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0d3ac030-7377-49eb-b793-f904323460d6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "232" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0d3ac030-7377-49eb-b793-f904323460d6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000433-0000000000001010-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5ec1a8f5-8ec0-4fc2-8f6a-6f88a01d7d47", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1452beb2-4817-45e1-aa9c-b365e7846e00", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "0d3ac030-7377-49eb-b793-f904323460d6", + "lastUpdateDateTime": "2022-02-18T19:16:07Z", + "createdDateTime": "2022-02-18T19:16:06Z", + "expirationDateTime": "2022-02-19T19:16:06Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0d3ac030-7377-49eb-b793-f904323460d6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000434-0000000000001012-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "69e72960-6f37-41c6-9bfe-5e4b6da6473c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d85e21aa-1419-4085-9528-9e5a366a373f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "0d3ac030-7377-49eb-b793-f904323460d6", + "lastUpdateDateTime": "2022-02-18T19:16:07Z", + "createdDateTime": "2022-02-18T19:16:06Z", + "expirationDateTime": "2022-02-19T19:16:06Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0d3ac030-7377-49eb-b793-f904323460d6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000435-0000000000001014-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a0a169fd-4f76-4f48-b161-bc53c0ea59fb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03db4ae9-acb1-4c73-84c9-3d27d61a444a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "jobId": "0d3ac030-7377-49eb-b793-f904323460d6", + "lastUpdateDateTime": "2022-02-18T19:16:07Z", + "createdDateTime": "2022-02-18T19:16:06Z", + "expirationDateTime": "2022-02-19T19:16:06Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0d3ac030-7377-49eb-b793-f904323460d6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000436-0000000000001016-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "99c0e098-3ac6-4194-85a8-fc3d697ceb91", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96c48a32-5019-4a50-ad35-cebdf6a19ad7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "jobId": "0d3ac030-7377-49eb-b793-f904323460d6", + "lastUpdateDateTime": "2022-02-18T19:16:10Z", + "createdDateTime": "2022-02-18T19:16:06Z", + "expirationDateTime": "2022-02-19T19:16:06Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:10.1006686Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0d3ac030-7377-49eb-b793-f904323460d6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000437-0000000000001018-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8e9d64e1-e8ee-4a65-91f7-8949eecf8fac", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ca99fa1-74be-4115-bc93-89d4bd42944c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "jobId": "0d3ac030-7377-49eb-b793-f904323460d6", + "lastUpdateDateTime": "2022-02-18T19:16:10Z", + "createdDateTime": "2022-02-18T19:16:06Z", + "expirationDateTime": "2022-02-19T19:16:06Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:10.1006686Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json index 237e388c33db..5ac3b8acf399 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json @@ -1,201 +1,433 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:19 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b85b300600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "d8cf0dd6-691a-47bb-84bc-9e6009692942", - "date": "Sat, 23 Oct 2021 00:57:20 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "211" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:20Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "890313da-e487-44c8-ae9a-701b6db072df", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:21Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "68bde939-7803-470c-881d-b52cc9697241", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:21Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "abf39a26-bd53-4e84-9796-49cbf772c6fb", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:21Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "efd8ef54-59ee-4e27-b183-bd82fd8164f9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:21Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "639cd0e1-5751-4972-9945-ccae88ae8403", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:21Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "d666efb7-839f-449b-9a21-70b99fc37f97", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:29Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:29.4353609Z\",\"state\":\"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\":[]},{\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "261f8cd4-adf2-4339-a251-996389a0da2e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "73" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/af9a3424-992e-47a2-a455-4f23525935b7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"af9a3424-992e-47a2-a455-4f23525935b7\",\"lastUpdateDateTime\":\"2021-10-23T00:57:29Z\",\"createdDateTime\":\"2021-10-23T00:57:20Z\",\"expirationDateTime\":\"2021-10-24T00:57:20Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:29.4353609Z\",\"state\":\"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\":[]},{\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "a85b0f7f-02be-4a8b-8ad5-d203fc87b73f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6a9e5e0a07c5759a5a0ec2a25c076f4a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "319", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000420-0000000000000980-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "60f4d8b6-f819-47b0-a815-bf025a0ab54a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "327521a6-62a9-4758-bf05-8aae04721eab", + "Date": "Fri, 18 Feb 2022 19:15:55 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d9731276-65ac-4212-83b7-63ce4df8ee54", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "151" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d9731276-65ac-4212-83b7-63ce4df8ee54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000421-0000000000000982-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c30636de-b7c0-48de-af6c-6b05d0a1c3f9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c2f0441-3d85-4c65-92ab-d5bad81e40bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "d9731276-65ac-4212-83b7-63ce4df8ee54", + "lastUpdateDateTime": "2022-02-18T19:15:56Z", + "createdDateTime": "2022-02-18T19:15:56Z", + "expirationDateTime": "2022-02-19T19:15:56Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d9731276-65ac-4212-83b7-63ce4df8ee54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000422-0000000000000984-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3980583a-618c-4369-badf-1fb44a28f0ac", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a16e9534-df2e-4dc8-9dbe-bde93dcee3df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "d9731276-65ac-4212-83b7-63ce4df8ee54", + "lastUpdateDateTime": "2022-02-18T19:15:56Z", + "createdDateTime": "2022-02-18T19:15:56Z", + "expirationDateTime": "2022-02-19T19:15:56Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d9731276-65ac-4212-83b7-63ce4df8ee54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000423-0000000000000986-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1fdaeff5-7228-4166-8214-bffd22ff60a9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85ad5ae1-51c6-482b-9980-27d13977805b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "d9731276-65ac-4212-83b7-63ce4df8ee54", + "lastUpdateDateTime": "2022-02-18T19:15:56Z", + "createdDateTime": "2022-02-18T19:15:56Z", + "expirationDateTime": "2022-02-19T19:15:56Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d9731276-65ac-4212-83b7-63ce4df8ee54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000424-0000000000000988-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "34973d26-643e-47b1-ab7f-a5a2da98894c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47b2e676-c256-46ac-810d-095b16de67fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "d9731276-65ac-4212-83b7-63ce4df8ee54", + "lastUpdateDateTime": "2022-02-18T19:15:59Z", + "createdDateTime": "2022-02-18T19:15:56Z", + "expirationDateTime": "2022-02-19T19:15:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:15:59.2743537Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d9731276-65ac-4212-83b7-63ce4df8ee54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000425-0000000000000990-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8d4fb0c1-142a-4470-8d5d-776a1a32ac0d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c94cbbae-8c60-4a48-a7a3-2e3e97ecc717", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "d9731276-65ac-4212-83b7-63ce4df8ee54", + "lastUpdateDateTime": "2022-02-18T19:15:59Z", + "createdDateTime": "2022-02-18T19:15:56Z", + "expirationDateTime": "2022-02-19T19:15:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:15:59.2743537Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json index 773b6cdca26f..ba2240248d0a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json @@ -1,277 +1,471 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:00 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "d0af8865-ece8-4625-88e2-e051ed8a0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\\n \\n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\\n \\n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\\n \\n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\\n \\n “Traditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,” he explained. “Based on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.”\\n \\n “Now, with Windows 365, we can do that within less than an hour of the account being created,” he said.\\n \\n Windows 365 puts Microsoft’s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\\n \\n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\\n \\n “Windows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not – maybe it was too costly, too complex or they didn’t have the expertise in house to do it,” said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\\n \\n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\\n \\n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user’s choosing from anywhere with an internet connection.\\n \\n “You want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office – you want them to have that same experience,” he said. “And you want them to have that experience in such a way that it feels familiar to them. It’s not this jolting thing that takes away all the things they love about Windows.”\\n \\n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft’s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\\n \\n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience – gamers – lacks an IT department to lean on when things glitch. “That started me thinking, ‘How do we build something that doesn’t require IT intervention, something that could truly scale to the consumer market?’” Manchester said.\\n \\n The consumer experience was Manchester’s benchmark when he started work on virtualization.\\n \\n “I took note of every time there was something that didn’t quite deliver on that,” he said. “And, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.”\\n \\n Covering that ground led to improvements in Microsoft’s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\\n \\n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\\n \\n “When we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,” he said.\\n \\n Soon after this bar was set, and the first batch of hires made – a handful of experts in virtualization and user experience – COVID-19 hit and changed the world.\\n \\n “We hired everybody else during the pandemic,” Manchester said. “They were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations – their bar was the experience they had on their laptop – and we basically used Windows 365 to build Windows 365.”\\n \\n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\\n \\n “We’re giving you Windows from the cloud,” Manchester said.\\n \",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"\\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said. She explained that customers were asking, “’How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?”\\n\\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there – in the office, at home or a coffee shop.\\n\\n “And then, when you’re done, you’re done. You won’t have any issues around security because you’re not saving anything on your device,” McKelvey said, noting that all the data is stored in the cloud.\\n\\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\\n\\n “I think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,” McKelvey said.\\n\\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\\n\\n We didn’t run it for very long,” he said. “It didn’t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.”\\n\\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government’s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester’s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\\n\\n “The impact that I believe we are finding, and the impact that we’re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,” he said.\\n\\n “Being able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.”\\n \",\"language\":\"en\"}]},\"tasks\":{\"extractiveSummarizationTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\",\"sentenceCount\":5,\"sortBy\":\"Offset\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "0c80dfa4-f45e-4b74-9c88-91e7a7f8117b", - "date": "Sat, 23 Oct 2021 00:57:01 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "343" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "e12faf1b-1dd4-4540-9d68-8648007deed0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c9fcaaa0-717b-4967-a963-cc48cf5a3a43", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "51955804-b17d-438f-8523-d2e01281a635", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "bbd41d1e-892d-4f99-96ce-a5085d1cbe10", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "81ed400e-011d-433a-8d19-da160220495b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "7c4d2f03-23d5-4a3c-a114-70ca54ab5bee", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "284f8bff-4fa2-4306-b433-463df5ae3c9b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "029377bf-0a86-4def-a52a-43178d264653", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "274b2eb4-1526-45d9-91b5-6d6a80ebd6d7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:01Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "17d5c8aa-c065-4c97-9c50-b1ada534519e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:18Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"extractiveSummarizationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:18.4250705Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentences\":[{\"text\":\"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.\",\"rankScore\":0.24,\"offset\":531,\"length\":160},{\"text\":\"Windows 365 puts Microsoft’s flagship operating system in the cloud.\",\"rankScore\":0.26,\"offset\":1864,\"length\":68},{\"text\":\"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.\",\"rankScore\":0.26,\"offset\":2283,\"length\":184},{\"text\":\"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.\",\"rankScore\":0.49,\"offset\":2468,\"length\":156},{\"text\":\"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\",\"rankScore\":1.0,\"offset\":2625,\"length\":156}],\"warnings\":[]},{\"id\":\"1\",\"sentences\":[{\"text\":\"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.\",\"rankScore\":0.63,\"offset\":11,\"length\":274},{\"text\":\"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.\",\"rankScore\":0.79,\"offset\":1109,\"length\":234},{\"text\":\"It enables employees accustomed to working from home to continue working from home;\",\"rankScore\":1.0,\"offset\":1344,\"length\":83},{\"text\":\"it enables companies to hire interns from halfway around the world;\",\"rankScore\":0.86,\"offset\":1428,\"length\":67},{\"text\":\"it allows startups to scale without requiring IT expertise.\",\"rankScore\":0.66,\"offset\":1496,\"length\":59}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-08-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "94c063e5-8be2-4532-b6e8-914af9c9e45b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "126" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/41faaf2a-0e0a-472a-82b8-2f5f76116951", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"41faaf2a-0e0a-472a-82b8-2f5f76116951\",\"lastUpdateDateTime\":\"2021-10-23T00:57:18Z\",\"createdDateTime\":\"2021-10-23T00:57:01Z\",\"expirationDateTime\":\"2021-10-24T00:57:01Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"extractiveSummarizationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:18.4250705Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentences\":[{\"text\":\"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.\",\"rankScore\":0.24,\"offset\":531,\"length\":160},{\"text\":\"Windows 365 puts Microsoft’s flagship operating system in the cloud.\",\"rankScore\":0.26,\"offset\":1864,\"length\":68},{\"text\":\"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.\",\"rankScore\":0.26,\"offset\":2283,\"length\":184},{\"text\":\"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.\",\"rankScore\":0.49,\"offset\":2468,\"length\":156},{\"text\":\"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\",\"rankScore\":1.0,\"offset\":2625,\"length\":156}],\"warnings\":[]},{\"id\":\"1\",\"sentences\":[{\"text\":\"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.\",\"rankScore\":0.63,\"offset\":11,\"length\":274},{\"text\":\"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.\",\"rankScore\":0.79,\"offset\":1109,\"length\":234},{\"text\":\"It enables employees accustomed to working from home to continue working from home;\",\"rankScore\":1.0,\"offset\":1344,\"length\":83},{\"text\":\"it enables companies to hire interns from halfway around the world;\",\"rankScore\":0.86,\"offset\":1428,\"length\":67},{\"text\":\"it allows startups to scale without requiring IT expertise.\",\"rankScore\":0.66,\"offset\":1496,\"length\":59}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-08-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "965c5f9c-578d-40ad-b9ac-42f778da9896", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fa3d6e17faf35a4cfced17d12fcad595" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "11477", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000414-0000000000000966-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dff52787-b64b-41f3-bb3d-de6151c1df8c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\n \n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\n \n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\n \n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\n \n \u201CTraditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,\u201D he explained. \u201CBased on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.\u201D\n \n \u201CNow, with Windows 365, we can do that within less than an hour of the account being created,\u201D he said.\n \n Windows 365 puts Microsoft\u2019s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\n \n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.\n \n \u201CWindows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not \u2013 maybe it was too costly, too complex or they didn\u2019t have the expertise in house to do it,\u201D said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\n \n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\n \n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user\u2019s choosing from anywhere with an internet connection.\n \n \u201CYou want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office \u2013 you want them to have that same experience,\u201D he said. \u201CAnd you want them to have that experience in such a way that it feels familiar to them. It\u2019s not this jolting thing that takes away all the things they love about Windows.\u201D\n \n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft\u2019s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\n \n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience \u2013 gamers \u2013 lacks an IT department to lean on when things glitch. \u201CThat started me thinking, \u2018How do we build something that doesn\u2019t require IT intervention, something that could truly scale to the consumer market?\u2019\u201D Manchester said.\n \n The consumer experience was Manchester\u2019s benchmark when he started work on virtualization.\n \n \u201CI took note of every time there was something that didn\u2019t quite deliver on that,\u201D he said. \u201CAnd, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.\u201D\n \n Covering that ground led to improvements in Microsoft\u2019s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\n \n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\n \n \u201CWhen we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,\u201D he said.\n \n Soon after this bar was set, and the first batch of hires made \u2013 a handful of experts in virtualization and user experience \u2013 COVID-19 hit and changed the world.\n \n \u201CWe hired everybody else during the pandemic,\u201D Manchester said. \u201CThey were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations \u2013 their bar was the experience they had on their laptop \u2013 and we basically used Windows 365 to build Windows 365.\u201D\n \n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\n \n \u201CWe\u2019re giving you Windows from the cloud,\u201D Manchester said.\n ", + "language": "en" + }, + { + "id": "1", + "text": "\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said. She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D\n\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.\n\n \u201CAnd then, when you\u2019re done, you\u2019re done. You won\u2019t have any issues around security because you\u2019re not saving anything on your device,\u201D McKelvey said, noting that all the data is stored in the cloud.\n\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\n\n \u201CI think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,\u201D McKelvey said.\n\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\n\n We didn\u2019t run it for very long,\u201D he said. \u201CIt didn\u2019t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.\u201D\n\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government\u2019s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester\u2019s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\n\n \u201CThe impact that I believe we are finding, and the impact that we\u2019re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,\u201D he said.\n\n \u201CBeing able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.\u201D\n ", + "language": "en" + } + ] + }, + "tasks": { + "extractiveSummarizationTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit", + "sentenceCount": 5, + "sortBy": "Offset" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a4869afb-1996-4bf7-9697-2ce624e3979a", + "Date": "Fri, 18 Feb 2022 19:15:50 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b94c4107-4f24-4ce7-88b8-7d8cae991fa0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b94c4107-4f24-4ce7-88b8-7d8cae991fa0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000415-0000000000000968-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "92419b67-53f0-421e-af82-d049c0ea4ccc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4e46ae6f-4af8-4ac5-8729-0eaba74a43aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "b94c4107-4f24-4ce7-88b8-7d8cae991fa0", + "lastUpdateDateTime": "2022-02-18T19:15:50Z", + "createdDateTime": "2022-02-18T19:15:50Z", + "expirationDateTime": "2022-02-19T19:15:50Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b94c4107-4f24-4ce7-88b8-7d8cae991fa0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000416-0000000000000970-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b4a725fb-50bf-433e-873a-252bed5d9685", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30d3b407-8bce-4094-9710-e7b1fa52f363", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "b94c4107-4f24-4ce7-88b8-7d8cae991fa0", + "lastUpdateDateTime": "2022-02-18T19:15:51Z", + "createdDateTime": "2022-02-18T19:15:50Z", + "expirationDateTime": "2022-02-19T19:15:50Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b94c4107-4f24-4ce7-88b8-7d8cae991fa0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000417-0000000000000972-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3a895ea5-467a-493a-ba5f-a26e8c161137", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4694f954-e318-4fb8-ab9b-962ed2a6da34", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "b94c4107-4f24-4ce7-88b8-7d8cae991fa0", + "lastUpdateDateTime": "2022-02-18T19:15:51Z", + "createdDateTime": "2022-02-18T19:15:50Z", + "expirationDateTime": "2022-02-19T19:15:50Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b94c4107-4f24-4ce7-88b8-7d8cae991fa0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000418-0000000000000974-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bdc43ab9-4c79-4ac0-8e7c-69faca1c9501", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d02ce72-29f8-4431-92ee-fa3d2fcf6efe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "b94c4107-4f24-4ce7-88b8-7d8cae991fa0", + "lastUpdateDateTime": "2022-02-18T19:15:54Z", + "createdDateTime": "2022-02-18T19:15:50Z", + "expirationDateTime": "2022-02-19T19:15:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:15:54.1324861Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b94c4107-4f24-4ce7-88b8-7d8cae991fa0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000419-0000000000000976-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6b099936-a1a0-4837-85c5-660e7c55aa71", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9cd63d45-8b76-476c-b4f2-4d969eb64e85", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:15:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "b94c4107-4f24-4ce7-88b8-7d8cae991fa0", + "lastUpdateDateTime": "2022-02-18T19:15:54Z", + "createdDateTime": "2022-02-18T19:15:50Z", + "expirationDateTime": "2022-02-19T19:15:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:15:54.1324861Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json index efda4630eca7..05343c83dd78 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json @@ -1,182 +1,360 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:30 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "30b253dc-ec45-4177-a6af-07c5e6380600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "f9e23a49-c37e-42b4-b0dd-b4962110bf65", - "date": "Sat, 23 Oct 2021 00:57:31 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "245" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:31Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "6160e021-3920-4a4b-aadf-487608f43349", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:31Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "243710fe-2108-4530-962d-248e22ad5d59", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:32Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c39072ca-4019-4794-8a58-c55d1ed99ce5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:32Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "246c2f99-a2e4-4b45-a589-8bef59ccae6b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:32Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "9d34a032-ef1c-4621-8d5b-8728f2b85bef", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:39Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:39.5410691Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "474c56f2-805a-497e-a6e3-ef167e19733c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/49e7a04e-c2e6-4813-8900-e2f4d18122f0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"49e7a04e-c2e6-4813-8900-e2f4d18122f0\",\"lastUpdateDateTime\":\"2021-10-23T00:57:39Z\",\"createdDateTime\":\"2021-10-23T00:57:31Z\",\"expirationDateTime\":\"2021-10-24T00:57:31Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:57:39.5410691Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "c3f09db1-9f22-49ae-b785-6b422159e61d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:57:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "181" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "16c8a31abbc40220a3d080d74cb1bd0d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "287", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000426-0000000000000994-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fb251d9f-8b61-4206-9d8f-5d82e2466802", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "daf37e60-e746-4980-af58-7318ef3e06d0", + "Date": "Fri, 18 Feb 2022 19:16:01 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53efccb7-a4af-434d-903d-4bc1505d20b1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53efccb7-a4af-434d-903d-4bc1505d20b1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000427-0000000000000996-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "865037ab-63cd-4f36-a86d-808c98813e02", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8901243-b170-446f-a1ef-6e7b95b1b898", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "53efccb7-a4af-434d-903d-4bc1505d20b1", + "lastUpdateDateTime": "2022-02-18T19:16:01Z", + "createdDateTime": "2022-02-18T19:16:01Z", + "expirationDateTime": "2022-02-19T19:16:01Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53efccb7-a4af-434d-903d-4bc1505d20b1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000428-0000000000000998-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e11f820e-4362-4c16-9a5a-66078a6a39fb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ed1cae7-bb08-48b1-a7f6-07057b23faa5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "53efccb7-a4af-434d-903d-4bc1505d20b1", + "lastUpdateDateTime": "2022-02-18T19:16:01Z", + "createdDateTime": "2022-02-18T19:16:01Z", + "expirationDateTime": "2022-02-19T19:16:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53efccb7-a4af-434d-903d-4bc1505d20b1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000429-0000000000001000-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e5bf3ffd-8792-4e38-8f1a-64e95b568cbd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fba40fd3-706f-4b19-b406-fb5110a86a4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "53efccb7-a4af-434d-903d-4bc1505d20b1", + "lastUpdateDateTime": "2022-02-18T19:16:01Z", + "createdDateTime": "2022-02-18T19:16:01Z", + "expirationDateTime": "2022-02-19T19:16:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53efccb7-a4af-434d-903d-4bc1505d20b1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000430-0000000000001002-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bb6ddc48-18f3-417a-9f2a-8ab2332ff96a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcca4a40-4538-425a-a48c-b0335902653f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "53efccb7-a4af-434d-903d-4bc1505d20b1", + "lastUpdateDateTime": "2022-02-18T19:16:04Z", + "createdDateTime": "2022-02-18T19:16:01Z", + "expirationDateTime": "2022-02-19T19:16:01Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:04.5728879Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/53efccb7-a4af-434d-903d-4bc1505d20b1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000431-0000000000001004-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cbf8d15a-1246-4c83-9101-39f4df44d2cc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0122662a-46bf-4a1b-84ce-67a7ab272d7b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "53efccb7-a4af-434d-903d-4bc1505d20b1", + "lastUpdateDateTime": "2022-02-18T19:16:04Z", + "createdDateTime": "2022-02-18T19:16:01Z", + "expirationDateTime": "2022-02-19T19:16:01Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:04.5728879Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json index 7f683283a256..42194d389bc4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json @@ -1,144 +1,423 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:01 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a66863f60300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"3\",\"text\":\"Is 998.214.865-68 your Brazilian CPF number?\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "94a31501-1dde-424b-b8c3-d5b008957b1f", - "date": "Sat, 23 Oct 2021 00:58:02 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73911151-3222-4bce-a333-2150b43f83a7", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "351" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73911151-3222-4bce-a333-2150b43f83a7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"73911151-3222-4bce-a333-2150b43f83a7\",\"lastUpdateDateTime\":\"2021-10-23T00:58:03Z\",\"createdDateTime\":\"2021-10-23T00:58:02Z\",\"expirationDateTime\":\"2021-10-24T00:58:02Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c98028c9-a6d4-42b4-817c-18de0c1b35d0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73911151-3222-4bce-a333-2150b43f83a7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"73911151-3222-4bce-a333-2150b43f83a7\",\"lastUpdateDateTime\":\"2021-10-23T00:58:03Z\",\"createdDateTime\":\"2021-10-23T00:58:02Z\",\"expirationDateTime\":\"2021-10-24T00:58:02Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "e48762f2-57d0-45bb-aeb3-1967eff8b0a7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73911151-3222-4bce-a333-2150b43f83a7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"73911151-3222-4bce-a333-2150b43f83a7\",\"lastUpdateDateTime\":\"2021-10-23T00:58:03Z\",\"createdDateTime\":\"2021-10-23T00:58:02Z\",\"expirationDateTime\":\"2021-10-24T00:58:02Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "298e2526-f56c-4a08-920f-efab30feca98", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73911151-3222-4bce-a333-2150b43f83a7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"73911151-3222-4bce-a333-2150b43f83a7\",\"lastUpdateDateTime\":\"2021-10-23T00:58:06Z\",\"createdDateTime\":\"2021-10-23T00:58:02Z\",\"expirationDateTime\":\"2021-10-24T00:58:02Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:06.0799739Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "cca10fbe-21e7-4482-99f3-1695f6e8b97f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73911151-3222-4bce-a333-2150b43f83a7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"73911151-3222-4bce-a333-2150b43f83a7\",\"lastUpdateDateTime\":\"2021-10-23T00:58:06Z\",\"createdDateTime\":\"2021-10-23T00:58:02Z\",\"expirationDateTime\":\"2021-10-24T00:58:02Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:06.0799739Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "55850b19-5915-41a1-90cc-e5c6858ccda0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "127" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "25cccf03b57f9bc577c4293caeb25808" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "383", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000444-0000000000001036-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1e72fc40-3654-470c-bd63-5dc3879f052b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "3", + "text": "Is 998.214.865-68 your Brazilian CPF number?" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c7728052-c02e-43c6-ac38-61617d754847", + "Date": "Fri, 18 Feb 2022 19:16:16 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ae18a652-8ab3-4b53-8d83-bae98b92076b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ae18a652-8ab3-4b53-8d83-bae98b92076b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000445-0000000000001038-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0ff1c116-9503-4c86-a8cb-db70f861d379", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e137bdda-ba70-49d2-b998-1e0dbe9a4199", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ae18a652-8ab3-4b53-8d83-bae98b92076b", + "lastUpdateDateTime": "2022-02-18T19:16:17Z", + "createdDateTime": "2022-02-18T19:16:17Z", + "expirationDateTime": "2022-02-19T19:16:17Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ae18a652-8ab3-4b53-8d83-bae98b92076b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000446-0000000000001040-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a3bd8496-b69d-44c6-9702-852fdfa448f7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5c4f8578-5672-4068-b2a1-fd0ced034505", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "ae18a652-8ab3-4b53-8d83-bae98b92076b", + "lastUpdateDateTime": "2022-02-18T19:16:17Z", + "createdDateTime": "2022-02-18T19:16:17Z", + "expirationDateTime": "2022-02-19T19:16:17Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ae18a652-8ab3-4b53-8d83-bae98b92076b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000447-0000000000001042-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3f12e97c-c619-410f-a7cd-73612ee0e9d6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e619fb89-178c-4264-bd29-e4d6b2ba8553", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ae18a652-8ab3-4b53-8d83-bae98b92076b", + "lastUpdateDateTime": "2022-02-18T19:16:18Z", + "createdDateTime": "2022-02-18T19:16:17Z", + "expirationDateTime": "2022-02-19T19:16:17Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ae18a652-8ab3-4b53-8d83-bae98b92076b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000448-0000000000001044-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "210c34e3-2f15-47b7-af69-3a5b592ce2ae", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a22156cb-fe0e-4705-a79b-e56b3559b7ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "jobId": "ae18a652-8ab3-4b53-8d83-bae98b92076b", + "lastUpdateDateTime": "2022-02-18T19:16:21Z", + "createdDateTime": "2022-02-18T19:16:17Z", + "expirationDateTime": "2022-02-19T19:16:17Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:21.208675Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ae18a652-8ab3-4b53-8d83-bae98b92076b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000449-0000000000001046-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e7fe9f4d-928c-419f-aba1-0e293c207bff", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a57df2d8-d971-4280-8bec-aec89aa0608b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "jobId": "ae18a652-8ab3-4b53-8d83-bae98b92076b", + "lastUpdateDateTime": "2022-02-18T19:16:21Z", + "createdDateTime": "2022-02-18T19:16:17Z", + "expirationDateTime": "2022-02-19T19:16:17Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:21.208675Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json index 160da30058f4..62348f52b0a1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json @@ -1,182 +1,366 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:06 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-504509430700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"piiCategories\":[\"USSocialSecurityNumber\"],\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "5f718787-4c92-4d31-b7dd-c721540c1e33", - "date": "Sat, 23 Oct 2021 00:58:07 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:07Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "437e9175-80a9-4eca-9a15-966c1a8ed275", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:08Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "91d6c1ca-b6f3-4708-8f3b-222d6ebacd48", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:08Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "4a243e6c-e31d-44ad-a774-f0438705f56a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:08Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "302f7b6b-d7f6-4a52-962a-492f3452a0ea", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:08Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "8b6363fc-0296-437d-9734-0afb1c49589e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:15Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:15.5814817Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "90cc9de8-2f4d-409b-9dfa-b578e26fdaae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2d40363-3fa4-43b5-81bb-c6b2960401a4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b2d40363-3fa4-43b5-81bb-c6b2960401a4\",\"lastUpdateDateTime\":\"2021-10-23T00:58:15Z\",\"createdDateTime\":\"2021-10-23T00:58:07Z\",\"expirationDateTime\":\"2021-10-24T00:58:07Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:15.5814817Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "f26e085c-8dc3-4868-8f67-e69fe0a5a86e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "2fed38c792b0dad3471c4df5a4cc39b1" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "470", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000450-0000000000001050-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8cf57fb2-48c0-4088-8e8a-8296a6aecb1e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "piiCategories": [ + "USSocialSecurityNumber" + ], + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "19ee7ba8-8e87-4a29-aff5-1f1963161be7", + "Date": "Fri, 18 Feb 2022 19:16:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe66d1e8-e539-48d2-b6e6-9b75835c216b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe66d1e8-e539-48d2-b6e6-9b75835c216b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000451-0000000000001052-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b1bb89de-e043-444e-a766-cf6e524bfe93", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c54cd73c-1f57-4a18-b6c9-0d0c3964de05", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "fe66d1e8-e539-48d2-b6e6-9b75835c216b", + "lastUpdateDateTime": "2022-02-18T19:16:23Z", + "createdDateTime": "2022-02-18T19:16:23Z", + "expirationDateTime": "2022-02-19T19:16:23Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe66d1e8-e539-48d2-b6e6-9b75835c216b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000452-0000000000001054-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fe459066-fd75-4a54-8cb2-fb99b3b15635", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "281e817d-07eb-46ce-a980-8977d81e9908", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "fe66d1e8-e539-48d2-b6e6-9b75835c216b", + "lastUpdateDateTime": "2022-02-18T19:16:23Z", + "createdDateTime": "2022-02-18T19:16:23Z", + "expirationDateTime": "2022-02-19T19:16:23Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe66d1e8-e539-48d2-b6e6-9b75835c216b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000453-0000000000001056-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4b04963b-5fb8-4972-9421-1f8c37518571", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d1a572a-0bae-456c-8e4a-5087c5f89f42", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "fe66d1e8-e539-48d2-b6e6-9b75835c216b", + "lastUpdateDateTime": "2022-02-18T19:16:23Z", + "createdDateTime": "2022-02-18T19:16:23Z", + "expirationDateTime": "2022-02-19T19:16:23Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe66d1e8-e539-48d2-b6e6-9b75835c216b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000454-0000000000001058-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "19cedb4e-a744-4cb9-880e-10f6a86c1a74", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "308bb725-82b0-43c8-a96a-87da1f1e8c1b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "jobId": "fe66d1e8-e539-48d2-b6e6-9b75835c216b", + "lastUpdateDateTime": "2022-02-18T19:16:26Z", + "createdDateTime": "2022-02-18T19:16:23Z", + "expirationDateTime": "2022-02-19T19:16:23Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:26.2105034Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe66d1e8-e539-48d2-b6e6-9b75835c216b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000455-0000000000001060-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "aef9a1f0-d686-403a-b8f9-b85d4586716b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aea6dbc2-958e-4a91-9d48-2d2a12b8e293", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "fe66d1e8-e539-48d2-b6e6-9b75835c216b", + "lastUpdateDateTime": "2022-02-18T19:16:26Z", + "createdDateTime": "2022-02-18T19:16:23Z", + "expirationDateTime": "2022-02-19T19:16:23Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:26.2105034Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json index 23a33a5703eb..9497aaae4f4a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json @@ -1,372 +1,1739 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:15 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e85440300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"The food was unacceptable\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"The rooms were beautiful. The AC was good and quiet.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The breakfast was good, but the toilet was smelly.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"The toilet smelled.\",\"language\":\"en\"}]},\"tasks\":{\"sentimentAnalysisTasks\":[{\"parameters\":{\"opinionMining\":true,\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "bc0e9438-c09a-4fc0-8e3a-98a49d1daf1c", - "date": "Sat, 23 Oct 2021 00:58:16 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "394" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "f5326342-cad0-4cbe-b997-fd634b0e4ff4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "13710a1b-ee99-4358-b9d4-9b147c9b576e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c90a41fb-d763-4f1a-8b40-e5cd27b62395", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "b72c97ef-e63a-40fa-95e4-99fbc9d99cfe", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "63e9d674-24f8-479e-8bd4-a3e6e5b334a9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "971640f0-5026-4b87-a891-b5cd13c7080c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "13aab996-4748-473c-837d-85ab1ebb3090", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "9f0d4a45-10ee-4a7f-96e7-0370c45b3f26", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "fa06aff6-9775-4f01-823a-b2366bfe0256", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "70761be2-3d2b-4de6-b185-75f4de5ec943", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "53d009d4-820b-4a8b-a74f-44cae3563ebc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "af8a5e60-1f06-4f59-8e8e-8e966a344ebe", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "3a3b6e78-c7a4-4f8a-87f1-adb0ac49f126", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "19168a4b-7dbd-4ba2-a1cc-440ea979b1f4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:17Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "1a580861-f941-4dae-8bde-03d8718ed2d3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:44Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:44.114805Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "809f09b9-cb53-400a-aeb4-7a20f6bd4a7e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "190" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/264235e1-1524-4b26-8dc1-609ee1b6b4b8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"264235e1-1524-4b26-8dc1-609ee1b6b4b8\",\"lastUpdateDateTime\":\"2021-10-23T00:58:44Z\",\"createdDateTime\":\"2021-10-23T00:58:16Z\",\"expirationDateTime\":\"2021-10-24T00:58:16Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:44.114805Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "bd075ea3-2248-4487-b7ec-3b7d86e2fa32", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "200" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1e5a0cf84c196df5b2e607ae6f82bbaa" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "749", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000456-0000000000001064-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6b18a7c4-4671-4378-8229-ea98f12b32db", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "tasks": { + "sentimentAnalysisTasks": [ + { + "parameters": { + "opinionMining": true, + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2a9096dd-2987-49f7-908d-aa34ac5e226d", + "Date": "Fri, 18 Feb 2022 19:16:28 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "290" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000457-0000000000001066-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7bb1bcb3-76f6-4fe7-a2e2-2f97ec7e67cb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "98e8977a-a678-48d7-b1c8-bf5afbcc6332", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:28Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000458-0000000000001068-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dc6efb0a-ea4c-4ba9-83b8-08cb50fac897", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8cbdcdad-a334-49a2-864f-338586c7df9d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:29Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000459-0000000000001070-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6976a71e-bd33-4ab0-bfc2-89a293559693", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0976f7d2-f16c-4ecb-b17a-59209f2bf7e1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:29Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000460-0000000000001072-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a1facdb4-247c-4999-9300-3bdd9956e548", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e0e1867d-9b0f-47f4-ac76-76d4a6fd94df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:29Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000461-0000000000001074-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bd76c4fd-3484-4fd3-a56b-8f33042dda5a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "137df18a-5208-45ef-863e-a020ccdcb528", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:29Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000462-0000000000001076-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f3274fd6-b001-42d5-a445-dcff663d462f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5c4d135-3c92-4fc9-82cc-10beb6677a56", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:29Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000463-0000000000001078-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c970a0a0-4239-4e83-95bf-c8be55778ba0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "877dc094-6cf8-4443-91d2-ede0aa946e76", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:37Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:37.7944844Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000464-0000000000001080-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "98e62e2d-5d36-4f75-b445-1a1acd113365", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f73aa56-341f-41ab-a22b-93700f3ce881", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "jobId": "a6a94fc4-bbc8-4067-a9c7-9281c5da7ea0", + "lastUpdateDateTime": "2022-02-18T19:16:37Z", + "createdDateTime": "2022-02-18T19:16:28Z", + "expirationDateTime": "2022-02-19T19:16:28Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:37.7944844Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json index 796ecf01c473..248c645cf7b2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json @@ -1,182 +1,849 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "30b253dc-ec45-4177-a6af-07c513420600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food. I recommend you try it.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "8bacacf5-31e3-476d-bb05-071b9a8a33a1", - "date": "Sat, 23 Oct 2021 00:58:47 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "395" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:47Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "48dc5d39-348f-4b16-9d6a-8e1b416e9b92", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:47Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "2d4aa23d-b628-4382-941c-ec9c4f41bc75", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:49Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:49.018429Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "860559af-62b9-48b0-a542-8576f688be06", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:50Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:49.018429Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:50.2928476Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "413e3331-1740-4602-b9a7-27c807e46081", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:50Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:49.018429Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:50.2928476Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "a175c81c-9427-43f2-8212-78a123aec380", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "306" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:55Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:55.800171Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:49.018429Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:50.2928476Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "62ddebcb-b380-48cb-942d-d0c50fb2c4a0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "359" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ab226dd2-9e77-455a-8193-5d113f9d7475", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ab226dd2-9e77-455a-8193-5d113f9d7475\",\"lastUpdateDateTime\":\"2021-10-23T00:58:55Z\",\"createdDateTime\":\"2021-10-23T00:58:46Z\",\"expirationDateTime\":\"2021-10-24T00:58:46Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:55.800171Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:49.018429Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:58:50.2928476Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "fdf1b76a-23fd-485f-9f26-243463436b0b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:58:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "333" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6d3933a0781393a55f4c0bc2bd10dd4a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "557", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000466-0000000000001088-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "11059e79-2272-4c87-9e8c-6312da171a66", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "The restaurant had really good food. I recommend you try it.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5aba3d70-4fa3-47a3-a3de-a91035da0363", + "Date": "Fri, 18 Feb 2022 19:16:41 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "339" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000467-0000000000001090-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a8baf950-2b5c-4dd7-964e-8a0a221c0af1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "39c33a93-35f2-4e78-b38c-7543102034ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:42Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000468-0000000000001092-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9cfd113f-755f-4e9d-ae3c-ab72568a3bac", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be6b3ae1-73df-4c4a-9442-4787b859c661", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:42Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000469-0000000000001094-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dbc6c64d-11cb-48f3-a7cc-36ce4a5e3aa5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "50c99623-96dc-49a4-977a-27f6c34aae60", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:42Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000470-0000000000001096-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5360136c-af02-45c7-9e12-5c7ef98a0784", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b1723cc-ed07-48b9-9088-417bb3c0f364", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:45Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:45.0815594Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:44.7700715Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000471-0000000000001098-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4fda83f1-c278-407a-b56d-be624d7ea8cb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cea8ab64-9dae-4988-89f8-36b58fb15c64", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:45Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:45.0815594Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:44.7700715Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000472-0000000000001100-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "47256056-5d43-4b6c-823e-b25899585b9a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd9d9589-7eaf-4b1c-bc04-679c436752d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:49Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:49.4519097Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:45.0815594Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:44.7700715Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fa00c72-772d-47ea-9f76-41e7d2910920?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000473-0000000000001102-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0d39b484-5e76-47d3-abce-15a7b9c5563c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2d5d1203-ce76-4db7-b7c1-e85aee65d45f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:16:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "jobId": "5fa00c72-772d-47ea-9f76-41e7d2910920", + "lastUpdateDateTime": "2022-02-18T19:16:49Z", + "createdDateTime": "2022-02-18T19:16:41Z", + "expirationDateTime": "2022-02-19T19:16:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:49.4519097Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:45.0815594Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:16:44.7700715Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json index 1ca7969e136d..8a3215dff53c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json @@ -1,125 +1,328 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:30 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "c0f3fa49-0c82-448c-b6c6-8c1f3051ae00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"},\"taskName\":\"action1\"},{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"},\"taskName\":\"action2\"}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "957a22b5-1099-4293-9820-6871dca5e767", - "date": "Thu, 28 Oct 2021 02:47:31 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa37674-8df6-4cd8-853c-4b5f39f60267", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "197" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa37674-8df6-4cd8-853c-4b5f39f60267", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0aa37674-8df6-4cd8-853c-4b5f39f60267\",\"lastUpdateDateTime\":\"2021-10-28T02:47:31Z\",\"createdDateTime\":\"2021-10-28T02:47:31Z\",\"expirationDateTime\":\"2021-10-29T02:47:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "6376aadf-0fa7-4fc0-94e7-f4af3bfe1e1f", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa37674-8df6-4cd8-853c-4b5f39f60267", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0aa37674-8df6-4cd8-853c-4b5f39f60267\",\"lastUpdateDateTime\":\"2021-10-28T02:47:31Z\",\"createdDateTime\":\"2021-10-28T02:47:31Z\",\"expirationDateTime\":\"2021-10-29T02:47:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "809f578c-2d45-477e-b3dc-c66bbe7ceb08", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa37674-8df6-4cd8-853c-4b5f39f60267", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0aa37674-8df6-4cd8-853c-4b5f39f60267\",\"lastUpdateDateTime\":\"2021-10-28T02:47:33Z\",\"createdDateTime\":\"2021-10-28T02:47:31Z\",\"expirationDateTime\":\"2021-10-29T02:47:31Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-28T02:47:33.5962409Z\",\"taskName\":\"action1\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}},{\"lastUpdateDateTime\":\"2021-10-28T02:47:33.4815324Z\",\"taskName\":\"action2\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "5c3ea5e1-890d-4cde-9a38-902a5ae3259a", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "164" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/0aa37674-8df6-4cd8-853c-4b5f39f60267", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0aa37674-8df6-4cd8-853c-4b5f39f60267\",\"lastUpdateDateTime\":\"2021-10-28T02:47:33Z\",\"createdDateTime\":\"2021-10-28T02:47:31Z\",\"expirationDateTime\":\"2021-10-29T02:47:31Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-28T02:47:33.5962409Z\",\"taskName\":\"action1\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}},{\"lastUpdateDateTime\":\"2021-10-28T02:47:33.4815324Z\",\"taskName\":\"action2\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "2e564b24-3afa-4dd1-946f-421df867e20f", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ad100e378d0887ae93badeebd4dba980" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000565-0000000000001316-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "372eef55-0399-43a1-a8c5-1eb993cb9961", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action1" + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action2" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "20445fcd-e0ea-48f2-8a23-ed8acf95d7ab", + "Date": "Fri, 18 Feb 2022 19:18:40 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1e6b92af-3ed9-4604-9921-79ff04f60323", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "181" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1e6b92af-3ed9-4604-9921-79ff04f60323?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000566-0000000000001318-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c72aabfb-f0b9-4e6a-814c-60415a4484b5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89f58d18-15c5-46f8-8151-44cd9dee632c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "1e6b92af-3ed9-4604-9921-79ff04f60323", + "lastUpdateDateTime": "2022-02-18T19:18:40Z", + "createdDateTime": "2022-02-18T19:18:40Z", + "expirationDateTime": "2022-02-19T19:18:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1e6b92af-3ed9-4604-9921-79ff04f60323?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000567-0000000000001320-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bd2c5c8d-29f1-43ed-8c02-0a50fd7edb8c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b68ac8e-faa4-416f-87a6-c784a2ee3368", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "1e6b92af-3ed9-4604-9921-79ff04f60323", + "lastUpdateDateTime": "2022-02-18T19:18:40Z", + "createdDateTime": "2022-02-18T19:18:40Z", + "expirationDateTime": "2022-02-19T19:18:40Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1e6b92af-3ed9-4604-9921-79ff04f60323?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000568-0000000000001322-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "72e635fd-8064-4ea5-af7b-00479855707f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d41e9b69-fa6b-4044-ab8a-d8e13b63d2a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "1e6b92af-3ed9-4604-9921-79ff04f60323", + "lastUpdateDateTime": "2022-02-18T19:18:42Z", + "createdDateTime": "2022-02-18T19:18:40Z", + "expirationDateTime": "2022-02-19T19:18:40Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:42.6294364Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:18:42.5941492Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1e6b92af-3ed9-4604-9921-79ff04f60323?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000569-0000000000001324-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cac06ead-538c-4d7e-a6e4-4209a782bbc0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5113111d-8fca-4331-8d9c-6ab88fb2ddd2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "1e6b92af-3ed9-4604-9921-79ff04f60323", + "lastUpdateDateTime": "2022-02-18T19:18:42Z", + "createdDateTime": "2022-02-18T19:18:40Z", + "expirationDateTime": "2022-02-19T19:18:40Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:18:42.6294364Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:18:42.5941492Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json index ea98297288e9..fc2784030ec8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json @@ -1,239 +1,845 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:31 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e43510300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "44d46de7-67df-4b79-89b1-9c4fe578185c", - "date": "Sat, 23 Oct 2021 01:00:32 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "355" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:32Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "0b182c3b-408d-44a3-b65c-2b38d5a317db", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:32Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "74c5e65a-ea8f-46c3-8a2c-cae7bd684cb1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:32Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "d44684a7-7b94-4566-85e4-c53a5c71503e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:32Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "f3c10fbb-9383-49eb-ad97-fd66d65a6ab6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:38Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "413daea9-995f-42b4-9dc9-9cedf89e5a39", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:38Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "2ec0a517-5a3c-4d43-94cb-60ac813d2f59", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:38Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "f8ff3307-1ed2-4664-a108-d729155fe0f4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:38Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "9dac3cbc-2534-4784-b413-de2bfe4f0455", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:46Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:46.746182Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:45.7518038Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:46.3684163Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "db0aa8d3-45a4-436b-98d9-ac1e36ae1a39", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "254" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f3e7a259-f9d3-4a63-b6fd-6fde03a9d2ba\",\"lastUpdateDateTime\":\"2021-10-23T01:00:46Z\",\"createdDateTime\":\"2021-10-23T01:00:31Z\",\"expirationDateTime\":\"2021-10-24T01:00:31Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:46.746182Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:45.7518038Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:46.3684163Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "ff2e9635-f2aa-4755-a335-92eaf14bdb45", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "341" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "56144706816e003877883aedde557092" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "460", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000518-0000000000001206-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f620caea-1d44-47b9-8c5d-ab1add5793a9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b5f1327c-a32f-4acc-b612-f37c2fd80855", + "Date": "Fri, 18 Feb 2022 19:17:46 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "212" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000519-0000000000001208-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "322d721e-6a43-4978-9fc1-fc0ff13e7ba6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e4031740-9c76-42de-84b1-1ec3ba8e8586", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:46Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000520-0000000000001210-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0139a82d-3003-458d-9182-29b833a526de", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47039b6d-eba4-499e-ae93-c966e889dacf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:46Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000521-0000000000001212-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "040f2593-f6b6-4e4e-b5aa-ca45eb786843", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2dfbe880-4468-4c26-8d71-c000dc607070", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:48Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.3925236Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.4116415Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000522-0000000000001214-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "901f19d7-dbd5-4509-bf1e-bffa67e6176d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2dd9981-b1c2-4c46-8cf3-468cd1e32f8d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "99" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:48Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.3925236Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.4116415Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000523-0000000000001216-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "47ccc77b-e205-4378-abee-2496db09e5a6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6395671a-0396-430e-8ab2-5a7e04b172b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "216" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:48Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.3925236Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.4116415Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000524-0000000000001218-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ca2b83c5-f168-4238-acc8-5a0647ac8d7f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9fb22b6c-2a9a-4422-a74c-f73be7805a4a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "218" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:54Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.3925236Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.4116415Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:54.1245746Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fbfba59f-87fc-4909-ad74-ad0c27a17b5a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000525-0000000000001220-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d34d2962-7c64-4427-8d61-9a5ce0346b91", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4b03b081-dce5-43f1-a868-dc57df595d4e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "148" + }, + "ResponseBody": { + "jobId": "fbfba59f-87fc-4909-ad74-ad0c27a17b5a", + "lastUpdateDateTime": "2022-02-18T19:17:54Z", + "createdDateTime": "2022-02-18T19:17:46Z", + "expirationDateTime": "2022-02-19T19:17:46Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.3925236Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:48.4116415Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:54.1245746Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json index 1c9e6551090a..e01c2d853295 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json @@ -1,239 +1,615 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "14ec9927-5649-462a-b621-1809aac20e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "c17ab9b8-587f-43a8-853c-1b741eb0828c", - "date": "Sat, 23 Oct 2021 00:59:42 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "399" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:42Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "f6562af9-38cc-475e-9281-de40a2ab6be2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:42Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "5c84fec4-e436-4724-9ced-a5f8bc60b736", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:44Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "93648691-8031-4923-bda5-82ce131b58c7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:44Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "21eb399b-f65e-4bbd-9f36-4e3bf4b0c76e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:48Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "b30ee929-c195-4aeb-89c8-588e3effa569", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:50Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:50.2942262Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "eaea1a7e-be27-44b0-a34e-5bbacd9a3f4f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "213" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:50Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:50.2942262Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "f39996aa-1138-4533-bb08-0cd331de250a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "150" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:50Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:50.2942262Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "365fd942-ca26-4bfe-b79d-b7c90f3d0156", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:56Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:50.2942262Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:56.1203358Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "01c1810c-9e55-42ef-8c91-7a28564d6dd1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "226" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bffa8c2a-8d0a-4c46-bde7-18dd38830845", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bffa8c2a-8d0a-4c46-bde7-18dd38830845\",\"lastUpdateDateTime\":\"2021-10-23T00:59:56Z\",\"createdDateTime\":\"2021-10-23T00:59:42Z\",\"expirationDateTime\":\"2021-10-24T00:59:42Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:50.2942262Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:44.6570505Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:59:56.1203358Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "52023a0f-3e98-4fe1-b43e-ac446b20876a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "306" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5ec6fa67bc019ae3b40cab62e82473f9" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000498-0000000000001160-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "90cbc500-8f60-4dd8-a4a7-eead0e4ba454", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "53db14f7-f362-45b3-9c89-bfe79af35a16", + "Date": "Fri, 18 Feb 2022 19:17:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18713c92-d03d-4812-8967-2ca9565be894", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "236" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18713c92-d03d-4812-8967-2ca9565be894?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000499-0000000000001162-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ef3025c4-7f0a-4919-a0f8-b74029e61bed", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "540e7222-61cf-433e-888b-fef95caa40a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "18713c92-d03d-4812-8967-2ca9565be894", + "lastUpdateDateTime": "2022-02-18T19:17:24Z", + "createdDateTime": "2022-02-18T19:17:24Z", + "expirationDateTime": "2022-02-19T19:17:24Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18713c92-d03d-4812-8967-2ca9565be894?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000500-0000000000001164-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bbacf2c3-7972-41d6-8f85-cf45a3e66f3a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "739bad1c-ac88-4c38-8ca0-8a3adb63fb29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "18713c92-d03d-4812-8967-2ca9565be894", + "lastUpdateDateTime": "2022-02-18T19:17:24Z", + "createdDateTime": "2022-02-18T19:17:24Z", + "expirationDateTime": "2022-02-19T19:17:24Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18713c92-d03d-4812-8967-2ca9565be894?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000501-0000000000001166-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1541f1ec-77ce-48d3-96dd-da0e294995cc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9baf6a23-2b56-42a3-b153-ba7fa255b5d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "117" + }, + "ResponseBody": { + "jobId": "18713c92-d03d-4812-8967-2ca9565be894", + "lastUpdateDateTime": "2022-02-18T19:17:26Z", + "createdDateTime": "2022-02-18T19:17:24Z", + "expirationDateTime": "2022-02-19T19:17:24Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:26.358315Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:26.6666298Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18713c92-d03d-4812-8967-2ca9565be894?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000502-0000000000001168-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6bec7539-f53f-4e8d-9434-06791dbd5c6d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f9601f8-1196-4ab6-b644-4d031245bb42", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" + }, + "ResponseBody": { + "jobId": "18713c92-d03d-4812-8967-2ca9565be894", + "lastUpdateDateTime": "2022-02-18T19:17:27Z", + "createdDateTime": "2022-02-18T19:17:24Z", + "expirationDateTime": "2022-02-19T19:17:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:26.358315Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:27.4037063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:26.6666298Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18713c92-d03d-4812-8967-2ca9565be894?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000503-0000000000001170-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b2b95ac4-3aa8-481f-bd92-ed084fd6373e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a570818f-0e8d-4788-aa71-6552cce7a806", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" + }, + "ResponseBody": { + "jobId": "18713c92-d03d-4812-8967-2ca9565be894", + "lastUpdateDateTime": "2022-02-18T19:17:27Z", + "createdDateTime": "2022-02-18T19:17:24Z", + "expirationDateTime": "2022-02-19T19:17:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:26.358315Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:27.4037063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:26.6666298Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json index ae9fa5cb6cad..448595518d8c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json @@ -1,239 +1,571 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:58 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38ded020f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "af0aa7c4-9bb3-482a-9ec6-d772590cf512", - "date": "Sat, 23 Oct 2021 00:59:58 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "324" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T00:59:59Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "4d80c3a6-71fc-4152-93ce-d0714b5ebeae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T00:59:59Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "f368f528-eb44-4620-a975-51cfb0cec1f9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:59:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:00Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "720a80c0-d357-43c9-8cb0-e8b8c647f546", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "431" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:00Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "1710d04f-081b-4045-a63f-926e74b9c8e8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:05Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "3f4fc8e1-6c87-460f-9f31-36f8f8d6da93", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:06Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:06.9315968Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "37304d93-4d34-461e-acfd-bda80627d82d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "238" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:06Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:06.9315968Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "e6e5f207-ad9e-410a-8881-47518685c348", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:06Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:06.9315968Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "a0ee4791-2a25-4acb-bc70-548a1933c200", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:13Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:06.9315968Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:13.4163182Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "4eb027d1-c153-46c3-a2b0-ec33fd0b3e36", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "395" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1b68c1ef-821a-497b-81f9-977b4de4d535", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1b68c1ef-821a-497b-81f9-977b4de4d535\",\"lastUpdateDateTime\":\"2021-10-23T01:00:13Z\",\"createdDateTime\":\"2021-10-23T00:59:58Z\",\"expirationDateTime\":\"2021-10-24T00:59:58Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:06.9315968Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:00.9362305Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T01:00:13.4163182Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "8a8de92b-3c6d-4ed4-a3ad-e2b5da664f69", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:00:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "341" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6cd0e2da6fc16ac66e7c16052763e438" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000504-0000000000001174-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2140aba2-08a3-4017-966b-186ad648d887", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5f130822-96b4-4dff-bcd7-831b55fcbea5", + "Date": "Fri, 18 Feb 2022 19:17:29 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b30d32f-d3e2-4217-8492-eff3f4f53c5d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "226" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b30d32f-d3e2-4217-8492-eff3f4f53c5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000505-0000000000001176-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a80db447-37ac-47c7-b335-0d2c1ddc5f3a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b6f174c-b2bf-42a3-9671-0fac67c2fe19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "2b30d32f-d3e2-4217-8492-eff3f4f53c5d", + "lastUpdateDateTime": "2022-02-18T19:17:30Z", + "createdDateTime": "2022-02-18T19:17:30Z", + "expirationDateTime": "2022-02-19T19:17:30Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b30d32f-d3e2-4217-8492-eff3f4f53c5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000506-0000000000001178-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c1683f6e-b6c5-4c0d-997c-526f1534c4c1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b09ce5c7-15f3-4650-b414-9f50214eb7c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2b30d32f-d3e2-4217-8492-eff3f4f53c5d", + "lastUpdateDateTime": "2022-02-18T19:17:30Z", + "createdDateTime": "2022-02-18T19:17:30Z", + "expirationDateTime": "2022-02-19T19:17:30Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b30d32f-d3e2-4217-8492-eff3f4f53c5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000507-0000000000001180-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "71247946-1d6a-4d86-bb02-47b2b46efe30", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "791fc6a9-3fde-4818-a516-5d91f2df6256", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "2b30d32f-d3e2-4217-8492-eff3f4f53c5d", + "lastUpdateDateTime": "2022-02-18T19:17:32Z", + "createdDateTime": "2022-02-18T19:17:30Z", + "expirationDateTime": "2022-02-19T19:17:30Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:32.4978278Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b30d32f-d3e2-4217-8492-eff3f4f53c5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000508-0000000000001182-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0d6b9b06-758e-402e-879f-31e010a24a1a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2060b685-3357-45e2-a807-8c5f39c276ec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "jobId": "2b30d32f-d3e2-4217-8492-eff3f4f53c5d", + "lastUpdateDateTime": "2022-02-18T19:17:33Z", + "createdDateTime": "2022-02-18T19:17:30Z", + "expirationDateTime": "2022-02-19T19:17:30Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:32.9741843Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:33.1135787Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:32.4978278Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b30d32f-d3e2-4217-8492-eff3f4f53c5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000509-0000000000001184-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c3dae333-515c-4d92-8fdf-f27759235f57", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "05287e45-4864-41cd-b7e5-f43b83ed01b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:17:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "185" + }, + "ResponseBody": { + "jobId": "2b30d32f-d3e2-4217-8492-eff3f4f53c5d", + "lastUpdateDateTime": "2022-02-18T19:17:33Z", + "createdDateTime": "2022-02-18T19:17:30Z", + "expirationDateTime": "2022-02-19T19:17:30Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:32.9741843Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:33.1135787Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:17:32.4978278Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json index ec0b1dfd100b..85657fc132b8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json @@ -1,127 +1,273 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:31 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12231.9 - NCUS ProdSlices", - "x-ms-request-id": "aa912c99-6bec-4cd9-8a55-0693eb992301" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"english\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "1ce09439-2ae0-4e29-ba2f-41f4ae9891d8", - "date": "Mon, 29 Nov 2021 22:47:32 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/3457f7b3-379e-4011-b106-9f794f2646bb", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "162" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/3457f7b3-379e-4011-b106-9f794f2646bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3457f7b3-379e-4011-b106-9f794f2646bb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:32Z\",\"createdDateTime\":\"2021-11-29T22:47:32Z\",\"expirationDateTime\":\"2021-11-30T22:47:32Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "515a578e-3424-42c6-bca9-249257652c78", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/3457f7b3-379e-4011-b106-9f794f2646bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3457f7b3-379e-4011-b106-9f794f2646bb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:32Z\",\"createdDateTime\":\"2021-11-29T22:47:32Z\",\"expirationDateTime\":\"2021-11-30T22:47:32Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b2bd52eb-2d65-47de-9c83-508e1c138079", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/3457f7b3-379e-4011-b106-9f794f2646bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3457f7b3-379e-4011-b106-9f794f2646bb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:32Z\",\"createdDateTime\":\"2021-11-29T22:47:32Z\",\"expirationDateTime\":\"2021-11-30T22:47:32Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "e4840f03-0e7b-4e31-af7a-c906a9d5fa0b", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "76" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/3457f7b3-379e-4011-b106-9f794f2646bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3457f7b3-379e-4011-b106-9f794f2646bb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:32Z\",\"createdDateTime\":\"2021-11-29T22:47:32Z\",\"expirationDateTime\":\"2021-11-30T22:47:32Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "31e6c366-debb-43c5-9a8a-9c892aaf9ab3", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "07def3dae67a5c72becb5b01dbfb4cb5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "116", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000646-0000000000001514-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7cbe17be-eab4-41c1-af4d-0e843ade105b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "english" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a8b3c0ed-1500-4098-be1b-76befb31153a", + "Date": "Fri, 18 Feb 2022 19:19:40 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/83cc3a33-47a7-4556-8fe1-094e8c887978", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/83cc3a33-47a7-4556-8fe1-094e8c887978?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000647-0000000000001516-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f5e99676-84ed-4895-8519-36a0d79681d4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff2b8df4-33c2-4d59-93fd-f2da2b371d3a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "83cc3a33-47a7-4556-8fe1-094e8c887978", + "lastUpdateDateTime": "2022-02-18T19:19:41Z", + "createdDateTime": "2022-02-18T19:19:41Z", + "expirationDateTime": "2022-02-19T19:19:41Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/83cc3a33-47a7-4556-8fe1-094e8c887978?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000648-0000000000001518-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "eb842eec-9c11-42e9-887a-e07e05d1d98a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "86997d5b-2fb5-4043-94da-f0cb3b54f361", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "83cc3a33-47a7-4556-8fe1-094e8c887978", + "lastUpdateDateTime": "2022-02-18T19:19:41Z", + "createdDateTime": "2022-02-18T19:19:41Z", + "expirationDateTime": "2022-02-19T19:19:41Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/83cc3a33-47a7-4556-8fe1-094e8c887978?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000649-0000000000001520-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "892d8fd5-8635-4def-8d94-f33654c9096c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f8ea1c2-f608-48f4-8a7f-62849cf959db", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "83cc3a33-47a7-4556-8fe1-094e8c887978", + "lastUpdateDateTime": "2022-02-18T19:19:42Z", + "createdDateTime": "2022-02-18T19:19:41Z", + "expirationDateTime": "2022-02-19T19:19:41Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/83cc3a33-47a7-4556-8fe1-094e8c887978?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000650-0000000000001522-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "29644a5c-53cf-41db-ba81-5f69be58188e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1af77338-1823-4075-8670-7c2ad616939b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "83cc3a33-47a7-4556-8fe1-094e8c887978", + "lastUpdateDateTime": "2022-02-18T19:19:42Z", + "createdDateTime": "2022-02-18T19:19:41Z", + "expirationDateTime": "2022-02-19T19:19:41Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json index f65b990ed4f5..c1ec04ade3ed 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json @@ -1,127 +1,301 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:08 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "ffae8c06-3c09-4510-8736-8553ad300f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "95d11853-f23f-4dc1-8718-156d5c412043", - "date": "Sat, 23 Oct 2021 01:02:09 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4a8c8fec-251d-4453-9e0d-789a8f2ddb3c", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "711" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4a8c8fec-251d-4453-9e0d-789a8f2ddb3c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4a8c8fec-251d-4453-9e0d-789a8f2ddb3c\",\"lastUpdateDateTime\":\"2021-10-23T01:02:09Z\",\"createdDateTime\":\"2021-10-23T01:02:08Z\",\"expirationDateTime\":\"2021-10-24T01:02:08Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "473eca28-2f09-4589-85d4-263b2ece6c05", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4a8c8fec-251d-4453-9e0d-789a8f2ddb3c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4a8c8fec-251d-4453-9e0d-789a8f2ddb3c\",\"lastUpdateDateTime\":\"2021-10-23T01:02:09Z\",\"createdDateTime\":\"2021-10-23T01:02:08Z\",\"expirationDateTime\":\"2021-10-24T01:02:08Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d9f43d25-af0f-4a55-b4d1-16311a5cd351", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4a8c8fec-251d-4453-9e0d-789a8f2ddb3c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4a8c8fec-251d-4453-9e0d-789a8f2ddb3c\",\"lastUpdateDateTime\":\"2021-10-23T01:02:10Z\",\"createdDateTime\":\"2021-10-23T01:02:08Z\",\"expirationDateTime\":\"2021-10-24T01:02:08Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "83efd2e1-cb3f-4fc5-82ec-271d743a4d77", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4a8c8fec-251d-4453-9e0d-789a8f2ddb3c", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4a8c8fec-251d-4453-9e0d-789a8f2ddb3c\",\"lastUpdateDateTime\":\"2021-10-23T01:02:10Z\",\"createdDateTime\":\"2021-10-23T01:02:08Z\",\"expirationDateTime\":\"2021-10-24T01:02:08Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "e67fbaae-17ca-40ce-a3c9-161aba132d66", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "389" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "422fa2aae090de9b8ef49ad07a6940c1" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "180", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000590-0000000000001376-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9faeb105-35e2-4fdb-b7c0-d346a03ad169", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3b4b9061-34ec-4c78-a115-e682776e5ae0", + "Date": "Fri, 18 Feb 2022 19:18:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/76de7732-c8ac-456e-bd94-3957f4e81dcf", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/76de7732-c8ac-456e-bd94-3957f4e81dcf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000591-0000000000001378-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f252b407-bf1c-45c3-b1ba-27e656a64862", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9640024b-6db9-4580-8f5e-c87747c9cce6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "76de7732-c8ac-456e-bd94-3957f4e81dcf", + "lastUpdateDateTime": "2022-02-18T19:18:59Z", + "createdDateTime": "2022-02-18T19:18:59Z", + "expirationDateTime": "2022-02-19T19:18:59Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/76de7732-c8ac-456e-bd94-3957f4e81dcf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000592-0000000000001380-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7f57c32a-d2c8-4add-9a09-7daca26c9189", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6db7180a-1db4-47ec-8c87-9499da6b9043", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "76de7732-c8ac-456e-bd94-3957f4e81dcf", + "lastUpdateDateTime": "2022-02-18T19:18:59Z", + "createdDateTime": "2022-02-18T19:18:59Z", + "expirationDateTime": "2022-02-19T19:18:59Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/76de7732-c8ac-456e-bd94-3957f4e81dcf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000593-0000000000001382-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3a13612b-9ea2-416f-91c1-46676d178cf2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f019cdf7-cc14-48d9-8da5-4a4d4b1d7f89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": { + "jobId": "76de7732-c8ac-456e-bd94-3957f4e81dcf", + "lastUpdateDateTime": "2022-02-18T19:19:00Z", + "createdDateTime": "2022-02-18T19:18:59Z", + "expirationDateTime": "2022-02-19T19:18:59Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/76de7732-c8ac-456e-bd94-3957f4e81dcf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000594-0000000000001384-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a4d93786-0092-4e54-86cb-a2d906fbece5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c276c6e0-7dd5-423d-9ed5-84fa8790073e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "84" + }, + "ResponseBody": { + "jobId": "76de7732-c8ac-456e-bd94-3957f4e81dcf", + "lastUpdateDateTime": "2022-02-18T19:19:00Z", + "createdDateTime": "2022-02-18T19:18:59Z", + "expirationDateTime": "2022-02-19T19:18:59Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json index e0c28ce84c41..e234b01bf974 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json @@ -1,127 +1,287 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:34 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12231.9 - NCUS ProdSlices", - "x-ms-request-id": "b75d161c-15cc-44a4-b4af-9991bdbf2a01" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"3\",\"text\":\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "aea61445-6ba9-40ca-8b2d-7ec9db986800", - "date": "Mon, 29 Nov 2021 22:47:35 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b685aac-2483-4412-8546-b324835aa963", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b685aac-2483-4412-8546-b324835aa963", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4b685aac-2483-4412-8546-b324835aa963\",\"lastUpdateDateTime\":\"2021-11-29T22:47:35Z\",\"createdDateTime\":\"2021-11-29T22:47:35Z\",\"expirationDateTime\":\"2021-11-30T22:47:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "86cc5d31-d8b9-428a-9d10-97b84f6dd558", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b685aac-2483-4412-8546-b324835aa963", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4b685aac-2483-4412-8546-b324835aa963\",\"lastUpdateDateTime\":\"2021-11-29T22:47:35Z\",\"createdDateTime\":\"2021-11-29T22:47:35Z\",\"expirationDateTime\":\"2021-11-30T22:47:35Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "280bc6c5-ba02-474d-b13b-e4ea39b14970", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b685aac-2483-4412-8546-b324835aa963", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4b685aac-2483-4412-8546-b324835aa963\",\"lastUpdateDateTime\":\"2021-11-29T22:47:37Z\",\"createdDateTime\":\"2021-11-29T22:47:35Z\",\"expirationDateTime\":\"2021-11-30T22:47:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[{\"code\":\"DocumentTruncated\",\"message\":\"Document is large and must be split to be processed; relations across splits may not be caught by the model\"}]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "07d282a2-ec8b-451a-bbc8-798b0cb97458", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "76" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b685aac-2483-4412-8546-b324835aa963", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"4b685aac-2483-4412-8546-b324835aa963\",\"lastUpdateDateTime\":\"2021-11-29T22:47:37Z\",\"createdDateTime\":\"2021-11-29T22:47:35Z\",\"expirationDateTime\":\"2021-11-30T22:47:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[{\"code\":\"DocumentTruncated\",\"message\":\"Document is large and must be split to be processed; relations across splits may not be caught by the model\"}]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b29452a8-0e2f-467a-bcfa-26f75ff79a79", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "58" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "51f3134eb78aedd923e232bba2898f8d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "5157", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000651-0000000000001526-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "16c1043c-f6eb-4e29-bd23-b05128d4b7ba", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "3", + "text": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "fcf40def-a7c8-46df-ace4-9e0275c3d787", + "Date": "Fri, 18 Feb 2022 19:19:44 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/275c3830-0830-4611-8389-9b88b34b4f27", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/275c3830-0830-4611-8389-9b88b34b4f27?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000652-0000000000001528-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "46f00012-2ee8-4668-8e41-a4397a2a851c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d530a01-3f32-4541-8e04-2a701ad04e85", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "275c3830-0830-4611-8389-9b88b34b4f27", + "lastUpdateDateTime": "2022-02-18T19:19:45Z", + "createdDateTime": "2022-02-18T19:19:45Z", + "expirationDateTime": "2022-02-19T19:19:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/275c3830-0830-4611-8389-9b88b34b4f27?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000653-0000000000001530-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "07aaa4dd-7daf-42d4-a495-0ab6b63b49a4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "009a77dc-7c8b-406a-8e2b-7067adff21c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "275c3830-0830-4611-8389-9b88b34b4f27", + "lastUpdateDateTime": "2022-02-18T19:19:45Z", + "createdDateTime": "2022-02-18T19:19:45Z", + "expirationDateTime": "2022-02-19T19:19:45Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/275c3830-0830-4611-8389-9b88b34b4f27?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000654-0000000000001532-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "823a9a02-f639-424b-8d9b-408543628308", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4cc1b01-b7d9-4873-a90a-f777c2d30baf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "275c3830-0830-4611-8389-9b88b34b4f27", + "lastUpdateDateTime": "2022-02-18T19:19:45Z", + "createdDateTime": "2022-02-18T19:19:45Z", + "expirationDateTime": "2022-02-19T19:19:45Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/275c3830-0830-4611-8389-9b88b34b4f27?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000655-0000000000001534-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ed9e8856-e9a3-4045-b24d-5aced8e7a40a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "de1b6db1-1f2f-4c20-bdb5-82030a383d95", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "275c3830-0830-4611-8389-9b88b34b4f27", + "lastUpdateDateTime": "2022-02-18T19:19:47Z", + "createdDateTime": "2022-02-18T19:19:45Z", + "expirationDateTime": "2022-02-19T19:19:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/275c3830-0830-4611-8389-9b88b34b4f27?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000656-0000000000001536-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7cb9a323-9565-49b0-a3f6-599f7bcdcfcf", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8054e774-2a30-47d1-9245-5bbb4b3152a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "275c3830-0830-4611-8389-9b88b34b4f27", + "lastUpdateDateTime": "2022-02-18T19:19:47Z", + "createdDateTime": "2022-02-18T19:19:45Z", + "expirationDateTime": "2022-02-19T19:19:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json index 30a1b35b4033..02995c0d52f1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json @@ -1,70 +1,95 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:52 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "6a905e00-80ee-49db-8ae6-c4c853be0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "17aab684-473c-4ba3-86fa-fd14548227e6", - "date": "Sat, 23 Oct 2021 01:02:53 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/40479a43-c780-4609-b276-7d300fa4c4d8", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "264" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/40479a43-c780-4609-b276-7d300fa4c4d8", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"40479a43-c780-4609-b276-7d300fa4c4d8\",\"lastUpdateDateTime\":\"2021-10-23T01:02:53Z\",\"createdDateTime\":\"2021-10-23T01:02:53Z\",\"expirationDateTime\":\"2021-10-24T01:02:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "883bcef5-cef4-49ae-bb7f-6e127de4d1b5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "22188dd88cd7873245aff997830b38f3" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000658-0000000000001544-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d4caa0b0-38a1-4f04-8464-2d71521b729b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "7e488874-1423-4400-908c-7f9407779513", + "Date": "Fri, 18 Feb 2022 19:19:51 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5724c868-d625-48a9-90fd-02b2b20d99b3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5724c868-d625-48a9-90fd-02b2b20d99b3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000659-0000000000001546-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c8060772-a2c6-4dae-8e1c-2a33977e934c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b090910-15ab-4bf5-b992-9085062ecb80", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "5724c868-d625-48a9-90fd-02b2b20d99b3", + "lastUpdateDateTime": "2022-02-18T19:19:51Z", + "createdDateTime": "2022-02-18T19:19:51Z", + "expirationDateTime": "2022-02-19T19:19:51Z", + "status": "notStarted", + "errors": [] + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json index 235bf5a7835f..bdaa0c5cb3ab 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json @@ -1,127 +1,236 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:13 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "24c7983b-38a5-4cd2-b81e-a6686f0e0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This won't actually create a warning :'(\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "21659c3b-c7e2-433c-86ca-6535b03f4054", - "date": "Sat, 23 Oct 2021 01:02:14 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/47845568-b195-4795-8e67-b5cf7bcd1c80", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "495" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/47845568-b195-4795-8e67-b5cf7bcd1c80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"47845568-b195-4795-8e67-b5cf7bcd1c80\",\"lastUpdateDateTime\":\"2021-10-23T01:02:14Z\",\"createdDateTime\":\"2021-10-23T01:02:14Z\",\"expirationDateTime\":\"2021-10-24T01:02:14Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d08ec622-57d9-4335-ab27-03246e3f3f36", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/47845568-b195-4795-8e67-b5cf7bcd1c80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"47845568-b195-4795-8e67-b5cf7bcd1c80\",\"lastUpdateDateTime\":\"2021-10-23T01:02:14Z\",\"createdDateTime\":\"2021-10-23T01:02:14Z\",\"expirationDateTime\":\"2021-10-24T01:02:14Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "c7cdf033-dfdc-4e3a-b86b-464c26356704", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/47845568-b195-4795-8e67-b5cf7bcd1c80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"47845568-b195-4795-8e67-b5cf7bcd1c80\",\"lastUpdateDateTime\":\"2021-10-23T01:02:15Z\",\"createdDateTime\":\"2021-10-23T01:02:14Z\",\"expirationDateTime\":\"2021-10-24T01:02:14Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "601b98bf-6a4a-4aad-b9a3-0142706561a0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/47845568-b195-4795-8e67-b5cf7bcd1c80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"47845568-b195-4795-8e67-b5cf7bcd1c80\",\"lastUpdateDateTime\":\"2021-10-23T01:02:15Z\",\"createdDateTime\":\"2021-10-23T01:02:14Z\",\"expirationDateTime\":\"2021-10-24T01:02:14Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "163b0a62-89b2-4e23-abec-2527a75e1096", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "245" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4d8a17643c0e840c231420df37a10a29" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "76", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000597-0000000000001396-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cd8aaa70-f489-4f61-b3da-304f4d527623", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This won\u0027t actually create a warning :\u0027(" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "bc09d62e-d8b8-42b9-843d-3f0fcda05591", + "Date": "Fri, 18 Feb 2022 19:19:04 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5eeb59ce-be80-4ed7-8450-d27cfa4ea280", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5eeb59ce-be80-4ed7-8450-d27cfa4ea280?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000598-0000000000001398-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "adc3e22c-2eb0-42b8-b8d6-3af251d9999f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bd534b0a-05a8-499c-8928-e9f3c1106101", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "5eeb59ce-be80-4ed7-8450-d27cfa4ea280", + "lastUpdateDateTime": "2022-02-18T19:19:04Z", + "createdDateTime": "2022-02-18T19:19:04Z", + "expirationDateTime": "2022-02-19T19:19:04Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5eeb59ce-be80-4ed7-8450-d27cfa4ea280?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000599-0000000000001400-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "583b16cf-5f78-4fb1-82c6-163d1b79dea7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "667b6318-0ef9-4af2-a9d9-5eaa571c7d6d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "5eeb59ce-be80-4ed7-8450-d27cfa4ea280", + "lastUpdateDateTime": "2022-02-18T19:19:04Z", + "createdDateTime": "2022-02-18T19:19:04Z", + "expirationDateTime": "2022-02-19T19:19:04Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5eeb59ce-be80-4ed7-8450-d27cfa4ea280?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000600-0000000000001402-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "06651a4c-193a-40b0-ac65-88048c075b9b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6c478b07-8a0f-4756-8f88-bda0d44da163", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "5eeb59ce-be80-4ed7-8450-d27cfa4ea280", + "lastUpdateDateTime": "2022-02-18T19:19:05Z", + "createdDateTime": "2022-02-18T19:19:04Z", + "expirationDateTime": "2022-02-19T19:19:04Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5eeb59ce-be80-4ed7-8450-d27cfa4ea280?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000601-0000000000001404-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2fbe4855-7c55-4614-aede-ea7fbb08bfdd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f806b1fb-b7e2-4149-a47c-f5dce7cbbf16", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "5eeb59ce-be80-4ed7-8450-d27cfa4ea280", + "lastUpdateDateTime": "2022-02-18T19:19:05Z", + "createdDateTime": "2022-02-18T19:19:04Z", + "expirationDateTime": "2022-02-19T19:19:04Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json index 3c2f0456c57b..6dca5eda8aeb 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json @@ -1,51 +1,61 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:52 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "6a905e00-80ee-49db-8ae6-c4c84dbe0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"hello world\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at.\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Request contains duplicated Ids. Make sure each document has a unique Id.\"}}}", - "responseHeaders": { - "apim-request-id": "8aa5f375-10e5-460b-b03f-bcde3fef81d0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5a1a51d510e78fbb9637596af3eed13e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "106", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000657-0000000000001540-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "06cd22a3-2ae1-43d9-8920-8b8a20069568", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "hello world" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at." + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "4fa60d5e-9c92-4a95-ab10-451a58bdbc5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Request contains duplicated Ids. Make sure each document has a unique Id." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json index 19d55f2e55a3..2efc6da0e719 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json @@ -1,127 +1,1619 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38d560f0f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"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\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "b79ffe8b-4cf0-4aa8-b540-8fe29c0cc5bf", - "date": "Sat, 23 Oct 2021 01:01:49 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1a7f73ad-3e39-461d-9b1a-330163ef91fd", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "387" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1a7f73ad-3e39-461d-9b1a-330163ef91fd", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1a7f73ad-3e39-461d-9b1a-330163ef91fd\",\"lastUpdateDateTime\":\"2021-10-23T01:01:50Z\",\"createdDateTime\":\"2021-10-23T01:01:50Z\",\"expirationDateTime\":\"2021-10-24T01:01:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "5ce9e876-2164-4d8b-9ca8-44792821e0fb", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1a7f73ad-3e39-461d-9b1a-330163ef91fd", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1a7f73ad-3e39-461d-9b1a-330163ef91fd\",\"lastUpdateDateTime\":\"2021-10-23T01:01:50Z\",\"createdDateTime\":\"2021-10-23T01:01:50Z\",\"expirationDateTime\":\"2021-10-24T01:01:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "62a75371-7c1b-40fa-be6e-0a7f2057fbd4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1a7f73ad-3e39-461d-9b1a-330163ef91fd", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1a7f73ad-3e39-461d-9b1a-330163ef91fd\",\"lastUpdateDateTime\":\"2021-10-23T01:01:51Z\",\"createdDateTime\":\"2021-10-23T01:01:50Z\",\"expirationDateTime\":\"2021-10-24T01:01:50Z\",\"status\":\"succeeded\",\"errors\":[],\"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\":\"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\":\"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\":1.0,\"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\":\"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_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"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\":\"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.9,\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "bb32131f-aa4d-489b-8c6f-73ee0354fcdd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1a7f73ad-3e39-461d-9b1a-330163ef91fd", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1a7f73ad-3e39-461d-9b1a-330163ef91fd\",\"lastUpdateDateTime\":\"2021-10-23T01:01:51Z\",\"createdDateTime\":\"2021-10-23T01:01:50Z\",\"expirationDateTime\":\"2021-10-24T01:01:50Z\",\"status\":\"succeeded\",\"errors\":[],\"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\":\"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\":\"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\":1.0,\"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\":\"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_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"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\":\"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.9,\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "2c94ab04-f728-4d85-acb3-8683ea689daf", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cc4d87871f3923d074a5e1b6cb77e07e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000575-0000000000001340-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ae8888cc-c5a5-474e-8550-9e379cb7513e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "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" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c8f4de49-44ec-4c4b-81cf-cc3542a43b76", + "Date": "Fri, 18 Feb 2022 19:18:47 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "95" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000576-0000000000001342-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0ff68869-da2d-4e02-9e72-84dcb70ad505", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7194b0e7-ea06-4f57-9957-9d4926d2502d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6", + "lastUpdateDateTime": "2022-02-18T19:18:48Z", + "createdDateTime": "2022-02-18T19:18:48Z", + "expirationDateTime": "2022-02-19T19:18:48Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000577-0000000000001344-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f09c8d5f-f728-492f-94c8-f8e180727fc3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5677753a-eba5-4c02-a3ca-0f6da2b85a03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6", + "lastUpdateDateTime": "2022-02-18T19:18:48Z", + "createdDateTime": "2022-02-18T19:18:48Z", + "expirationDateTime": "2022-02-19T19:18:48Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000578-0000000000001346-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "94056dff-5e17-4918-827f-f758fb411af8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23aa02c4-3035-4399-abd7-be13bcff4264", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "jobId": "dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6", + "lastUpdateDateTime": "2022-02-18T19:18:48Z", + "createdDateTime": "2022-02-18T19:18:48Z", + "expirationDateTime": "2022-02-19T19:18:48Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000579-0000000000001348-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "77c79a3f-d64e-450a-8aaa-0eb1af4393ec", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d650db6-6aed-48c6-b84f-03f7703bb0ff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "660" + }, + "ResponseBody": { + "jobId": "dd105a1a-dd5b-4f7d-bdfb-4e9048e555a6", + "lastUpdateDateTime": "2022-02-18T19:18:48Z", + "createdDateTime": "2022-02-18T19:18:48Z", + "expirationDateTime": "2022-02-19T19:18:48Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json index dfae6571a961..d0afcda2ec4d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json @@ -1,127 +1,499 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:58 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-5045646d0700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "7babda94-5af2-4a6a-b535-de1aedd7bd0e", - "date": "Sat, 23 Oct 2021 01:02:58 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c2b0fb79-ffe9-4474-9bf8-75d6ea536dba", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "195" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c2b0fb79-ffe9-4474-9bf8-75d6ea536dba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c2b0fb79-ffe9-4474-9bf8-75d6ea536dba\",\"lastUpdateDateTime\":\"2021-10-23T01:02:59Z\",\"createdDateTime\":\"2021-10-23T01:02:59Z\",\"expirationDateTime\":\"2021-10-24T01:02:59Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0e9662bb-968d-4088-afe5-02428ca963d7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c2b0fb79-ffe9-4474-9bf8-75d6ea536dba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c2b0fb79-ffe9-4474-9bf8-75d6ea536dba\",\"lastUpdateDateTime\":\"2021-10-23T01:02:59Z\",\"createdDateTime\":\"2021-10-23T01:02:59Z\",\"expirationDateTime\":\"2021-10-24T01:02:59Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "7ed704d9-6a65-437d-852e-443399719484", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c2b0fb79-ffe9-4474-9bf8-75d6ea536dba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c2b0fb79-ffe9-4474-9bf8-75d6ea536dba\",\"lastUpdateDateTime\":\"2021-10-23T01:02:59Z\",\"createdDateTime\":\"2021-10-23T01:02:59Z\",\"expirationDateTime\":\"2021-10-24T01:02:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "31b16424-5885-4e4d-af55-29613734a732", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:03:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c2b0fb79-ffe9-4474-9bf8-75d6ea536dba", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c2b0fb79-ffe9-4474-9bf8-75d6ea536dba\",\"lastUpdateDateTime\":\"2021-10-23T01:02:59Z\",\"createdDateTime\":\"2021-10-23T01:02:59Z\",\"expirationDateTime\":\"2021-10-24T01:02:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "73a1123c-2410-4c2c-8fd2-32fc76a3883c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:03:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3a4d4b61449c4b62316d886bdd39c2af" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000667-0000000000001568-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "df794912-c278-4cc4-9f7f-0fc192a58947", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "31961934-4103-48d9-a725-8908ed0c52ed", + "Date": "Fri, 18 Feb 2022 19:19:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/0a070a10-e141-45e6-8f9f-4a8b9c40a3db", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/0a070a10-e141-45e6-8f9f-4a8b9c40a3db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000668-0000000000001570-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0f9a2858-a9fe-4490-932c-f02987668734", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6ed328f-4b89-4a49-857f-089e670e2d4e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "0a070a10-e141-45e6-8f9f-4a8b9c40a3db", + "lastUpdateDateTime": "2022-02-18T19:19:59Z", + "createdDateTime": "2022-02-18T19:19:59Z", + "expirationDateTime": "2022-02-19T19:19:59Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/0a070a10-e141-45e6-8f9f-4a8b9c40a3db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000669-0000000000001572-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d13818ab-c8c9-4047-896f-835cdd5b1596", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "436b4701-6160-4493-a8ff-9767c9afe1fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "0a070a10-e141-45e6-8f9f-4a8b9c40a3db", + "lastUpdateDateTime": "2022-02-18T19:19:59Z", + "createdDateTime": "2022-02-18T19:19:59Z", + "expirationDateTime": "2022-02-19T19:19:59Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/0a070a10-e141-45e6-8f9f-4a8b9c40a3db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000670-0000000000001574-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "45183867-a14c-432c-95f9-7a344da9f80e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0cf7a3f1-43f2-4e5a-bb00-57c0107267e9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:20:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "jobId": "0a070a10-e141-45e6-8f9f-4a8b9c40a3db", + "lastUpdateDateTime": "2022-02-18T19:19:59Z", + "createdDateTime": "2022-02-18T19:19:59Z", + "expirationDateTime": "2022-02-19T19:19:59Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/0a070a10-e141-45e6-8f9f-4a8b9c40a3db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000671-0000000000001576-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "09918f84-1516-4929-bf67-dd2586821e5b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "092c6bb3-f1aa-4d00-b650-b3d5303610e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:20:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "113" + }, + "ResponseBody": { + "jobId": "0a070a10-e141-45e6-8f9f-4a8b9c40a3db", + "lastUpdateDateTime": "2022-02-18T19:19:59Z", + "createdDateTime": "2022-02-18T19:19:59Z", + "expirationDateTime": "2022-02-19T19:19:59Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json index bc5c1be76667..fd1b42fbfe68 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json @@ -1,127 +1,499 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:56 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e34610300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "6a6c9def-b1dd-4fb8-8663-58707e2481c9", - "date": "Sat, 23 Oct 2021 01:02:56 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f9701503-b966-49cc-ad89-d707abf07a35", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "230" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f9701503-b966-49cc-ad89-d707abf07a35", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f9701503-b966-49cc-ad89-d707abf07a35\",\"lastUpdateDateTime\":\"2021-10-23T01:02:56Z\",\"createdDateTime\":\"2021-10-23T01:02:56Z\",\"expirationDateTime\":\"2021-10-24T01:02:56Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "e95a7f5f-b78a-4b27-9b1d-3dddc61f5087", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f9701503-b966-49cc-ad89-d707abf07a35", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f9701503-b966-49cc-ad89-d707abf07a35\",\"lastUpdateDateTime\":\"2021-10-23T01:02:56Z\",\"createdDateTime\":\"2021-10-23T01:02:56Z\",\"expirationDateTime\":\"2021-10-24T01:02:56Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "55390593-0460-4e0c-ac30-2e2545a9f79e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f9701503-b966-49cc-ad89-d707abf07a35", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f9701503-b966-49cc-ad89-d707abf07a35\",\"lastUpdateDateTime\":\"2021-10-23T01:02:57Z\",\"createdDateTime\":\"2021-10-23T01:02:56Z\",\"expirationDateTime\":\"2021-10-24T01:02:56Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "a2463bfb-8fdc-4089-81c1-8313e26ad144", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "112" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f9701503-b966-49cc-ad89-d707abf07a35", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f9701503-b966-49cc-ad89-d707abf07a35\",\"lastUpdateDateTime\":\"2021-10-23T01:02:57Z\",\"createdDateTime\":\"2021-10-23T01:02:56Z\",\"expirationDateTime\":\"2021-10-24T01:02:56Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "261fcaa4-a320-4a7f-80df-901e24794780", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "57" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d47462d4e9b472ba12db5c090d1db876" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000662-0000000000001556-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2d4da2aa-6356-4963-9142-fa5c5b3c29a7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "83d0c237-48e5-4e23-ba37-3951727b103f", + "Date": "Fri, 18 Feb 2022 19:19:55 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000663-0000000000001558-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6d572f9e-287e-425c-bcb3-0792792852e3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b6ad7797-2694-481a-a95a-458f3a459b63", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0", + "lastUpdateDateTime": "2022-02-18T19:19:55Z", + "createdDateTime": "2022-02-18T19:19:55Z", + "expirationDateTime": "2022-02-19T19:19:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000664-0000000000001560-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2ab995dc-ae5c-49c3-8f92-8f5b81c69bd8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b768d88-b955-42dd-8144-80b6c6e63030", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0", + "lastUpdateDateTime": "2022-02-18T19:19:55Z", + "createdDateTime": "2022-02-18T19:19:55Z", + "expirationDateTime": "2022-02-19T19:19:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000665-0000000000001562-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fac30de9-7d01-468a-a91e-3f8524d46e5e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab558bea-f3a6-4849-a317-03d6596a257d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "jobId": "91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0", + "lastUpdateDateTime": "2022-02-18T19:19:56Z", + "createdDateTime": "2022-02-18T19:19:55Z", + "expirationDateTime": "2022-02-19T19:19:55Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000666-0000000000001564-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "be8ef3e7-a438-4435-80bc-1313320fa6ee", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6eba9edd-c479-4cf5-aeec-b5ef393760dc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "91ffc43a-9f7c-4fa8-8fc9-e76d2aa23ff0", + "lastUpdateDateTime": "2022-02-18T19:19:56Z", + "createdDateTime": "2022-02-18T19:19:55Z", + "expirationDateTime": "2022-02-19T19:19:55Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json index 5e619508a8fe..6266e02c7237 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json @@ -1,222 +1,986 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:52 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "efcc41dd-167d-428c-b3f9-ad32eb0e0700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "feecb689-ab6b-4f90-b362-df1a95f9a89c", - "date": "Sat, 23 Oct 2021 01:01:53 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "244" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:01:53Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0fd0c8d2-30bd-437d-a5bf-ed8f07865217", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:01:53Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "99da1515-4377-40e8-b74a-4a4b14751349", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:01:53Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a5ae8f34-418d-40a8-af71-fa61fb746822", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:01:53Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "51a42f12-b6c3-4aa7-9167-8e39219762ee", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:01:53Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "bf62347d-f458-42f9-afa1-d298b299255b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:02:01Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "864821d6-c60d-4ed5-bccc-ac98edd39e5a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:02:01Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1aee334b-b98c-4d21-acec-33fa27553afa", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:02:04Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "161b8b32-8e4a-4045-ba71-b8aec7bc2f94", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "124" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9c98bbf7-9338-457e-8348-ceda07959c29", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9c98bbf7-9338-457e-8348-ceda07959c29\",\"lastUpdateDateTime\":\"2021-10-23T01:02:04Z\",\"createdDateTime\":\"2021-10-23T01:01:53Z\",\"expirationDateTime\":\"2021-10-24T01:01:53Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "e6981ba8-1cdb-479f-90ca-2db20d6c3a04", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "88" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "69614f61c6917237913585d6d9c8c593" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000580-0000000000001352-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "76794c8e-bea7-4b6f-abab-6145ada7e6ae", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "18eb5c80-2fda-4679-84e3-72b0af484e3d", + "Date": "Fri, 18 Feb 2022 19:18:52 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/28b6221a-da15-40c4-b997-2efa1edf9071", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "350" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/28b6221a-da15-40c4-b997-2efa1edf9071?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000581-0000000000001354-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "601446c6-d5e7-4b0f-9951-fee3696a88b5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03fe379d-d02f-469b-9e10-77461a3de7b9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "28b6221a-da15-40c4-b997-2efa1edf9071", + "lastUpdateDateTime": "2022-02-18T19:18:52Z", + "createdDateTime": "2022-02-18T19:18:52Z", + "expirationDateTime": "2022-02-19T19:18:52Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/28b6221a-da15-40c4-b997-2efa1edf9071?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000582-0000000000001356-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1fe2ae91-ce0c-4e5f-9190-add11ccd366c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72adf74a-5323-4b68-b933-792f12705218", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18: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": { + "jobId": "28b6221a-da15-40c4-b997-2efa1edf9071", + "lastUpdateDateTime": "2022-02-18T19:18:52Z", + "createdDateTime": "2022-02-18T19:18:52Z", + "expirationDateTime": "2022-02-19T19:18:52Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/28b6221a-da15-40c4-b997-2efa1edf9071?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000583-0000000000001358-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "16f1cda1-b082-4ac8-9255-1d4097b3cbfd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a484244c-621c-4470-85ff-7e19f5ebcfc3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "28b6221a-da15-40c4-b997-2efa1edf9071", + "lastUpdateDateTime": "2022-02-18T19:18:52Z", + "createdDateTime": "2022-02-18T19:18:52Z", + "expirationDateTime": "2022-02-19T19:18:52Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/28b6221a-da15-40c4-b997-2efa1edf9071?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000584-0000000000001360-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0a688ca8-f73a-46f8-b23d-1210030fe63b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6a334b73-ba97-441d-bfd1-c92d0fcb8b08", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "jobId": "28b6221a-da15-40c4-b997-2efa1edf9071", + "lastUpdateDateTime": "2022-02-18T19:18:52Z", + "createdDateTime": "2022-02-18T19:18:52Z", + "expirationDateTime": "2022-02-19T19:18:52Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json index ddab9df19195..7c6f8eca4cd8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json @@ -1,298 +1,986 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:28 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "51bcef3a-1423-4f44-bdea-80f5a8770400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "f89b3ea0-6ccd-4fbe-8359-ea93146987cd", - "date": "Sat, 23 Oct 2021 01:01:28 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "309" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b8297c1b-bd76-41d5-b4c5-e6b5ccbac430", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "9f2678ac-2f93-4e4d-81f1-4b99251f2d42", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "19ffe8ef-373f-4a59-9a5d-b32fca28d659", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a84ff529-5541-4f81-8b69-ecad2cbc9152", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b184b0df-e6e0-47d4-91a0-2b6e7e16694c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "7e8eed2c-aa06-43cb-b32f-8dfb001790be", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "2f6ebd2d-9b9f-40a1-b5f1-4c3ca9158927", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:28Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "48051142-a918-4a73-ac0f-74c96169d962", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:42Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "5f53a5cd-6737-46ce-81d2-4bf7890760d4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:42Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "8e887653-82f3-4299-a236-0c345d3ccce6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:42Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "3d4c27d8-c1e4-4754-a816-0fd34e542e1e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:47Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "e01bc818-e1d8-4317-ad02-f886f5ccadc9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2ac835c6-f755-4e16-83e9-178e025783d1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2ac835c6-f755-4e16-83e9-178e025783d1\",\"lastUpdateDateTime\":\"2021-10-23T01:01:47Z\",\"createdDateTime\":\"2021-10-23T01:01:28Z\",\"expirationDateTime\":\"2021-10-24T01:01:28Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "9d9e20fe-6e1b-4788-a706-911ff5a89413", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:01:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3539cc6e492731ad933d3d63d2719d0e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000570-0000000000001328-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5deccd50-d9fa-4c4c-b34d-616198eaec43", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "1", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "759556ac-264d-430c-93d1-539b7b4d4aed", + "Date": "Fri, 18 Feb 2022 19:18:43 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1336255c-7bcc-40f7-8cd4-2c51d4407e1e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1336255c-7bcc-40f7-8cd4-2c51d4407e1e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000571-0000000000001330-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "932ebc9e-4c4e-4231-bdd8-474d49658f0e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ee6d48a-1d77-4aa4-b327-fb12986cfd0c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1336255c-7bcc-40f7-8cd4-2c51d4407e1e", + "lastUpdateDateTime": "2022-02-18T19:18:44Z", + "createdDateTime": "2022-02-18T19:18:44Z", + "expirationDateTime": "2022-02-19T19:18:44Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1336255c-7bcc-40f7-8cd4-2c51d4407e1e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000572-0000000000001332-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "68971525-f1dc-4132-b4ed-b8d0147d4a19", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "afd15817-94a3-47c4-bf90-0b0d8733981a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "1336255c-7bcc-40f7-8cd4-2c51d4407e1e", + "lastUpdateDateTime": "2022-02-18T19:18:44Z", + "createdDateTime": "2022-02-18T19:18:44Z", + "expirationDateTime": "2022-02-19T19:18:44Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1336255c-7bcc-40f7-8cd4-2c51d4407e1e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000573-0000000000001334-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "22a32633-a8e5-4c11-84df-151b74917a02", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0dc92d5a-1a60-4423-b483-f7f6274c2688", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "1336255c-7bcc-40f7-8cd4-2c51d4407e1e", + "lastUpdateDateTime": "2022-02-18T19:18:45Z", + "createdDateTime": "2022-02-18T19:18:44Z", + "expirationDateTime": "2022-02-19T19:18:44Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1336255c-7bcc-40f7-8cd4-2c51d4407e1e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000574-0000000000001336-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f34b3196-7547-4ca8-bb77-00c3bdf2db2e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "354ec87a-7fa3-4c7e-9b53-bc87bcb95194", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "1336255c-7bcc-40f7-8cd4-2c51d4407e1e", + "lastUpdateDateTime": "2022-02-18T19:18:45Z", + "createdDateTime": "2022-02-18T19:18:44Z", + "expirationDateTime": "2022-02-19T19:18:44Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json index 075d1d2dedea..7e7aaba9567a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json @@ -1,127 +1,247 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b8815b0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "a3335c4d-7074-4ea4-9900-f00e148086d3", - "date": "Sat, 23 Oct 2021 01:02:44 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/71d690ba-2f4d-4201-9c2c-4cfa0bc8250b", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "201" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/71d690ba-2f4d-4201-9c2c-4cfa0bc8250b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"71d690ba-2f4d-4201-9c2c-4cfa0bc8250b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:44Z\",\"createdDateTime\":\"2021-10-23T01:02:44Z\",\"expirationDateTime\":\"2021-10-24T01:02:44Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "17a98b7f-79b7-45ba-8bf4-34fe589143ec", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/71d690ba-2f4d-4201-9c2c-4cfa0bc8250b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"71d690ba-2f4d-4201-9c2c-4cfa0bc8250b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:44Z\",\"createdDateTime\":\"2021-10-23T01:02:44Z\",\"expirationDateTime\":\"2021-10-24T01:02:44Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "2c07c806-0931-4759-aa5f-dab09f350c04", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/71d690ba-2f4d-4201-9c2c-4cfa0bc8250b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"71d690ba-2f4d-4201-9c2c-4cfa0bc8250b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:45Z\",\"createdDateTime\":\"2021-10-23T01:02:44Z\",\"expirationDateTime\":\"2021-10-24T01:02:44Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "3c1a5494-1b87-4f4d-9388-a087decbb32b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/71d690ba-2f4d-4201-9c2c-4cfa0bc8250b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"71d690ba-2f4d-4201-9c2c-4cfa0bc8250b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:45Z\",\"createdDateTime\":\"2021-10-23T01:02:44Z\",\"expirationDateTime\":\"2021-10-24T01:02:44Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "7b255c78-3b33-4b00-8374-207f6da24986", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7fe28fb1cf9568039be008ba4f6aae88" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000636-0000000000001490-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "65ce4587-5ce3-473c-afa3-65a28d0e9168", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ed04f4ad-43be-49d4-94ac-7edbbc2cf9c0", + "Date": "Fri, 18 Feb 2022 19:19:33 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ac37eb54-afca-4f0e-bbb8-233499eb9161", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ac37eb54-afca-4f0e-bbb8-233499eb9161?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000637-0000000000001492-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f8d4d4bc-a685-4da0-892b-13d40a781d2e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "178d381a-b002-48cb-9258-2199f46e0885", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "ac37eb54-afca-4f0e-bbb8-233499eb9161", + "lastUpdateDateTime": "2022-02-18T19:19:34Z", + "createdDateTime": "2022-02-18T19:19:34Z", + "expirationDateTime": "2022-02-19T19:19:34Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ac37eb54-afca-4f0e-bbb8-233499eb9161?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000638-0000000000001494-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c1a93442-8c36-4517-bfda-7649f97e100e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1c40a79-53ea-4827-8038-dd43c5c28220", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "ac37eb54-afca-4f0e-bbb8-233499eb9161", + "lastUpdateDateTime": "2022-02-18T19:19:34Z", + "createdDateTime": "2022-02-18T19:19:34Z", + "expirationDateTime": "2022-02-19T19:19:34Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ac37eb54-afca-4f0e-bbb8-233499eb9161?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000639-0000000000001496-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1dd37c7d-663f-4482-a9a5-3bbb37e49119", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3432e811-b6c4-48dc-8804-3069daeb8805", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "ac37eb54-afca-4f0e-bbb8-233499eb9161", + "lastUpdateDateTime": "2022-02-18T19:19:34Z", + "createdDateTime": "2022-02-18T19:19:34Z", + "expirationDateTime": "2022-02-19T19:19:34Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ac37eb54-afca-4f0e-bbb8-233499eb9161?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000640-0000000000001498-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3e9cbd44-42f5-4cc1-8a37-ec834d1dbb3e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f3ce9254-9169-482d-811e-6d37e195c390", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "241" + }, + "ResponseBody": { + "jobId": "ac37eb54-afca-4f0e-bbb8-233499eb9161", + "lastUpdateDateTime": "2022-02-18T19:19:34Z", + "createdDateTime": "2022-02-18T19:19:34Z", + "expirationDateTime": "2022-02-19T19:19:34Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json index 5bf51866ec3c..844c909b4711 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json @@ -1,127 +1,247 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:46 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "06d03ac3-c989-4eee-bc78-cd1861200e00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "8350517e-94bd-40d4-9fff-f3afeaa6e3e5", - "date": "Sat, 23 Oct 2021 01:02:47 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8ce26bd0-eaa4-492e-942f-7be203cd4cc3", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "377" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8ce26bd0-eaa4-492e-942f-7be203cd4cc3", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ce26bd0-eaa4-492e-942f-7be203cd4cc3\",\"lastUpdateDateTime\":\"2021-10-23T01:02:47Z\",\"createdDateTime\":\"2021-10-23T01:02:47Z\",\"expirationDateTime\":\"2021-10-24T01:02:47Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "798f706f-b5f3-4e4f-85a3-ccdcce17cca1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8ce26bd0-eaa4-492e-942f-7be203cd4cc3", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ce26bd0-eaa4-492e-942f-7be203cd4cc3\",\"lastUpdateDateTime\":\"2021-10-23T01:02:47Z\",\"createdDateTime\":\"2021-10-23T01:02:47Z\",\"expirationDateTime\":\"2021-10-24T01:02:47Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "2080e5b1-94a8-4f1b-92d3-88055ab5a17f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8ce26bd0-eaa4-492e-942f-7be203cd4cc3", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ce26bd0-eaa4-492e-942f-7be203cd4cc3\",\"lastUpdateDateTime\":\"2021-10-23T01:02:47Z\",\"createdDateTime\":\"2021-10-23T01:02:47Z\",\"expirationDateTime\":\"2021-10-24T01:02:47Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "a43d1b8d-7424-4674-a681-eedd73498a39", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8ce26bd0-eaa4-492e-942f-7be203cd4cc3", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ce26bd0-eaa4-492e-942f-7be203cd4cc3\",\"lastUpdateDateTime\":\"2021-10-23T01:02:47Z\",\"createdDateTime\":\"2021-10-23T01:02:47Z\",\"expirationDateTime\":\"2021-10-24T01:02:47Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "62f529ef-96b3-493c-b540-463ade703118", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "340cd4ff03c6dde812d00ee817fd5d2d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000641-0000000000001502-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2489dce7-42a6-488c-b6af-bb4da0f9216b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b60f6553-ceaf-4288-a8e7-bc75e8f6d46f", + "Date": "Fri, 18 Feb 2022 19:19:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/35e7e33a-241b-4f25-af0f-bb20a344d44d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/35e7e33a-241b-4f25-af0f-bb20a344d44d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000642-0000000000001504-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "be156acc-fe06-48ab-a560-a3adbb0a9f57", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa377dc3-e48d-4b51-a6b1-f3ec512d1a43", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "35e7e33a-241b-4f25-af0f-bb20a344d44d", + "lastUpdateDateTime": "2022-02-18T19:19:37Z", + "createdDateTime": "2022-02-18T19:19:37Z", + "expirationDateTime": "2022-02-19T19:19:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/35e7e33a-241b-4f25-af0f-bb20a344d44d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000643-0000000000001506-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "db31ff91-1de7-4007-aaa9-0ae110ff38e3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a06808cb-0413-4df3-88aa-a7b44a38f4fb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "35e7e33a-241b-4f25-af0f-bb20a344d44d", + "lastUpdateDateTime": "2022-02-18T19:19:37Z", + "createdDateTime": "2022-02-18T19:19:37Z", + "expirationDateTime": "2022-02-19T19:19:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/35e7e33a-241b-4f25-af0f-bb20a344d44d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000644-0000000000001508-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "68090c4a-bda5-4911-8258-b06bdd54fa06", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a91c342c-7452-4944-98bb-e178db0f8e6a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "35e7e33a-241b-4f25-af0f-bb20a344d44d", + "lastUpdateDateTime": "2022-02-18T19:19:38Z", + "createdDateTime": "2022-02-18T19:19:37Z", + "expirationDateTime": "2022-02-19T19:19:37Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/35e7e33a-241b-4f25-af0f-bb20a344d44d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000645-0000000000001510-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "363cc91e-d164-4ed3-9302-fce2d5ba0702", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a40e3eb4-e9dd-486e-b4d5-7564e6b36e92", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "35e7e33a-241b-4f25-af0f-bb20a344d44d", + "lastUpdateDateTime": "2022-02-18T19:19:38Z", + "createdDateTime": "2022-02-18T19:19:37Z", + "expirationDateTime": "2022-02-19T19:19:37Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json index d1135cacf7cf..052787bb1a14 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json @@ -1,108 +1,557 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:53 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "b3b93de1-7a2a-491d-a3df-aa1955320400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "afdf6528-f60b-4f0e-8d4f-19f0fba52395", - "date": "Sat, 23 Oct 2021 01:02:53 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f87b2bdf-785f-4484-94e7-0c0bd5a6754b", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "251" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f87b2bdf-785f-4484-94e7-0c0bd5a6754b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f87b2bdf-785f-4484-94e7-0c0bd5a6754b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:53Z\",\"createdDateTime\":\"2021-10-23T01:02:53Z\",\"expirationDateTime\":\"2021-10-24T01:02:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "fcf177ca-be46-4082-86d0-6bdd8677d26b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f87b2bdf-785f-4484-94e7-0c0bd5a6754b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f87b2bdf-785f-4484-94e7-0c0bd5a6754b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:53Z\",\"createdDateTime\":\"2021-10-23T01:02:53Z\",\"expirationDateTime\":\"2021-10-24T01:02:53Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "91ca11c9-4da9-4d74-a292-f6818a2d59a4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f87b2bdf-785f-4484-94e7-0c0bd5a6754b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f87b2bdf-785f-4484-94e7-0c0bd5a6754b\",\"lastUpdateDateTime\":\"2021-10-23T01:02:54Z\",\"createdDateTime\":\"2021-10-23T01:02:53Z\",\"expirationDateTime\":\"2021-10-24T01:02:53Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "f9ee4246-ff83-4c8c-880f-8ba22c3c5b8b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3b1bfa7150c392a6af4b897b5403a6ad" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1bcace23-8518-4440-a810-781c84226c52", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a344b89f-be45-473f-907b-0fc372064eb7", + "Date": "Fri, 18 Feb 2022 19:46:46 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bae19fd0-0c36-43a7-825a-fd6e5947362b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bae19fd0-0c36-43a7-825a-fd6e5947362b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "265bdcda-8de2-4b2d-a697-c3d010d36528", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36ab7280-edfe-4177-bcb2-45ef04b683eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "bae19fd0-0c36-43a7-825a-fd6e5947362b", + "lastUpdateDateTime": "2022-02-18T19:46:47Z", + "createdDateTime": "2022-02-18T19:46:47Z", + "expirationDateTime": "2022-02-19T19:46:47Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bae19fd0-0c36-43a7-825a-fd6e5947362b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b430c7cf-96ed-4a4d-b897-4af2985d4546", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b116ec4-c6e0-47c2-8ca8-cbcc90f57de4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "bae19fd0-0c36-43a7-825a-fd6e5947362b", + "lastUpdateDateTime": "2022-02-18T19:46:47Z", + "createdDateTime": "2022-02-18T19:46:47Z", + "expirationDateTime": "2022-02-19T19:46:47Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bae19fd0-0c36-43a7-825a-fd6e5947362b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "704d13ba-69b0-43ba-b813-8ae35f64ad4f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f17bcd9a-0831-463d-bdc8-aed6d656a600", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "bae19fd0-0c36-43a7-825a-fd6e5947362b", + "lastUpdateDateTime": "2022-02-18T19:46:47Z", + "createdDateTime": "2022-02-18T19:46:47Z", + "expirationDateTime": "2022-02-19T19:46:47Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json index e916f6805a22..b1ec4b9a0a01 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json @@ -1,127 +1,316 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:16 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "98507e92-833b-4e49-9784-504581670700" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "8b19162c-1b66-45b1-84da-cac6b8d1c2eb", - "date": "Sat, 23 Oct 2021 01:02:16 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f2e9fbf1-9e90-40d0-9695-ce9684d421fa", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "401" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f2e9fbf1-9e90-40d0-9695-ce9684d421fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f2e9fbf1-9e90-40d0-9695-ce9684d421fa\",\"lastUpdateDateTime\":\"2021-10-23T01:02:17Z\",\"createdDateTime\":\"2021-10-23T01:02:17Z\",\"expirationDateTime\":\"2021-10-24T01:02:17Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "497a5c3f-7074-4c29-bb90-a3cedf90370f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f2e9fbf1-9e90-40d0-9695-ce9684d421fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f2e9fbf1-9e90-40d0-9695-ce9684d421fa\",\"lastUpdateDateTime\":\"2021-10-23T01:02:17Z\",\"createdDateTime\":\"2021-10-23T01:02:17Z\",\"expirationDateTime\":\"2021-10-24T01:02:17Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "65b3a91a-abf7-439d-b20c-faa89782e476", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f2e9fbf1-9e90-40d0-9695-ce9684d421fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f2e9fbf1-9e90-40d0-9695-ce9684d421fa\",\"lastUpdateDateTime\":\"2021-10-23T01:02:18Z\",\"createdDateTime\":\"2021-10-23T01:02:17Z\",\"expirationDateTime\":\"2021-10-24T01:02:17Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "3cb488be-d819-4f32-a3cc-6d0202dc4352", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "183" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f2e9fbf1-9e90-40d0-9695-ce9684d421fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f2e9fbf1-9e90-40d0-9695-ce9684d421fa\",\"lastUpdateDateTime\":\"2021-10-23T01:02:18Z\",\"createdDateTime\":\"2021-10-23T01:02:17Z\",\"expirationDateTime\":\"2021-10-24T01:02:17Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "5a8e6790-c4d7-4a3e-9dae-d5dbc6319ba9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "107" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cbd339ce17c35137e2aeaf5c8267159f" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "139", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000602-0000000000001408-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d81344c5-49ec-4aca-b8aa-139bd09d991f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "328f3e67-27f3-4559-ac88-fbf88cc6b72b", + "Date": "Fri, 18 Feb 2022 19:19:07 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e5eca2da-c51e-4e52-9c30-79c05bf05259", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "219" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e5eca2da-c51e-4e52-9c30-79c05bf05259?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000603-0000000000001410-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2d83b746-af9a-4ea5-8af5-6c9214530dba", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "750624e6-7af1-437c-9ecb-752c115e5c36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "e5eca2da-c51e-4e52-9c30-79c05bf05259", + "lastUpdateDateTime": "2022-02-18T19:19:08Z", + "createdDateTime": "2022-02-18T19:19:08Z", + "expirationDateTime": "2022-02-19T19:19:08Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e5eca2da-c51e-4e52-9c30-79c05bf05259?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000604-0000000000001412-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "62c73754-4ecf-4d1b-852e-f414f2c7ba3d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6aa0d14c-7d72-4f41-9d90-c8af2430e5b5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "e5eca2da-c51e-4e52-9c30-79c05bf05259", + "lastUpdateDateTime": "2022-02-18T19:19:08Z", + "createdDateTime": "2022-02-18T19:19:08Z", + "expirationDateTime": "2022-02-19T19:19:08Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e5eca2da-c51e-4e52-9c30-79c05bf05259?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000605-0000000000001414-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "63faa907-88fd-4308-b942-96b06e2ff272", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19732fe0-3b03-4af2-8fee-b8c3c4ee27f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "jobId": "e5eca2da-c51e-4e52-9c30-79c05bf05259", + "lastUpdateDateTime": "2022-02-18T19:19:09Z", + "createdDateTime": "2022-02-18T19:19:08Z", + "expirationDateTime": "2022-02-19T19:19:08Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e5eca2da-c51e-4e52-9c30-79c05bf05259?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000606-0000000000001416-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e048646a-f435-4738-88bc-21af281d2d69", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "270b83ca-c9a6-4578-99b8-ab1c82faf223", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": { + "jobId": "e5eca2da-c51e-4e52-9c30-79c05bf05259", + "lastUpdateDateTime": "2022-02-18T19:19:09Z", + "createdDateTime": "2022-02-18T19:19:08Z", + "expirationDateTime": "2022-02-19T19:19:08Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json index 0b9fa1252eb0..ec29daf3b53f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json @@ -1,127 +1,312 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:20 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344e455d0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "90fcfaaf-38e9-417b-a380-71dbf154a690", - "date": "Sat, 23 Oct 2021 01:02:19 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/a9f0ac8c-de51-447a-9097-8341c638ac3f", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "332" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/a9f0ac8c-de51-447a-9097-8341c638ac3f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a9f0ac8c-de51-447a-9097-8341c638ac3f\",\"lastUpdateDateTime\":\"2021-10-23T01:02:20Z\",\"createdDateTime\":\"2021-10-23T01:02:20Z\",\"expirationDateTime\":\"2021-10-24T01:02:20Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b2781d10-4f78-478f-81ee-bbc32775ac9c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/a9f0ac8c-de51-447a-9097-8341c638ac3f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a9f0ac8c-de51-447a-9097-8341c638ac3f\",\"lastUpdateDateTime\":\"2021-10-23T01:02:20Z\",\"createdDateTime\":\"2021-10-23T01:02:20Z\",\"expirationDateTime\":\"2021-10-24T01:02:20Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "64ee7872-aa31-4af7-91d1-aa8045ae90ba", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/a9f0ac8c-de51-447a-9097-8341c638ac3f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a9f0ac8c-de51-447a-9097-8341c638ac3f\",\"lastUpdateDateTime\":\"2021-10-23T01:02:22Z\",\"createdDateTime\":\"2021-10-23T01:02:20Z\",\"expirationDateTime\":\"2021-10-24T01:02:20Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "63c19ca2-1d78-424b-8293-4f753f0ca4ae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "147" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/a9f0ac8c-de51-447a-9097-8341c638ac3f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a9f0ac8c-de51-447a-9097-8341c638ac3f\",\"lastUpdateDateTime\":\"2021-10-23T01:02:22Z\",\"createdDateTime\":\"2021-10-23T01:02:20Z\",\"expirationDateTime\":\"2021-10-24T01:02:20Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "c6698553-9a77-4600-bf85-4c389b52a3e5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "149" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "eaff1e524a72db2cac72365f54d2a8fd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000607-0000000000001420-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2dc580ee-2357-4db2-acd0-a7f746cce5e4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ddef383f-41c0-4a14-8f0e-e627e08d4d12", + "Date": "Fri, 18 Feb 2022 19:19:11 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/635c1be5-381b-4abb-a908-999564dee29c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "380" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/635c1be5-381b-4abb-a908-999564dee29c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000608-0000000000001422-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c8defa8f-fa4c-444c-ba3c-bfe6ff2edd27", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7d96b8e-7918-48d5-b493-5a6079168fdb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "635c1be5-381b-4abb-a908-999564dee29c", + "lastUpdateDateTime": "2022-02-18T19:19:12Z", + "createdDateTime": "2022-02-18T19:19:11Z", + "expirationDateTime": "2022-02-19T19:19:11Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/635c1be5-381b-4abb-a908-999564dee29c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000609-0000000000001424-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bb36e450-2ef5-4f81-a284-8977a5c3f7e0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24dffd1f-59df-4eb9-8006-27ed38bb3ec9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "635c1be5-381b-4abb-a908-999564dee29c", + "lastUpdateDateTime": "2022-02-18T19:19:12Z", + "createdDateTime": "2022-02-18T19:19:11Z", + "expirationDateTime": "2022-02-19T19:19:11Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/635c1be5-381b-4abb-a908-999564dee29c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000610-0000000000001426-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ff90ef9b-a0f2-4d55-a9c9-92f036e6af54", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06b632a2-c27f-42b7-883e-b322de38d4e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "jobId": "635c1be5-381b-4abb-a908-999564dee29c", + "lastUpdateDateTime": "2022-02-18T19:19:13Z", + "createdDateTime": "2022-02-18T19:19:11Z", + "expirationDateTime": "2022-02-19T19:19:11Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/635c1be5-381b-4abb-a908-999564dee29c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000611-0000000000001428-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a7d93453-0a2c-4133-ba5a-fa7850b94e79", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5db7c429-4588-4b6f-ab45-16fe9a68c7b9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": { + "jobId": "635c1be5-381b-4abb-a908-999564dee29c", + "lastUpdateDateTime": "2022-02-18T19:19:13Z", + "createdDateTime": "2022-02-18T19:19:11Z", + "expirationDateTime": "2022-02-19T19:19:11Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json index 279af8737630..7517cb0ba335 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json @@ -1,51 +1,2553 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:12 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38dbc110f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"25\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"26\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"27\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"28\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"29\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"30\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"31\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"32\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"33\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"34\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"35\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"36\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"37\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"38\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"39\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"40\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"41\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"42\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"43\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"44\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"45\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"46\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"47\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"48\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"49\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"50\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"51\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"52\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"53\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"54\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"55\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"56\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"57\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"58\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"59\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"60\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"61\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"62\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"63\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"64\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"65\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"66\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"67\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"68\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"69\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"70\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"71\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"72\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"73\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"74\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"75\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"76\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"77\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"78\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"79\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"80\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"81\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"82\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"83\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"84\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"85\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"86\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"87\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"88\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"89\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"90\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"91\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"92\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"93\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"94\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"95\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"96\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"97\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"98\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"99\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"100\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"101\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"102\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"103\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"104\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"105\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"106\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"107\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"108\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"109\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"110\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"111\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"112\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"113\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"114\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"115\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"116\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"117\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"118\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"119\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"120\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"121\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"122\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"123\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"124\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"125\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"126\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"127\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"128\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"129\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"130\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"131\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"132\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"133\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"134\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"135\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"136\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"137\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"138\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"139\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"140\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"141\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"142\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"143\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"144\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"145\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"146\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"147\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"148\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"149\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"150\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"151\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"152\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"153\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"154\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"155\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"156\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"157\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"158\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"159\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"160\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"161\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"162\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"163\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"164\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"165\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"166\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"167\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"168\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"169\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"170\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"171\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"172\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"173\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"174\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"175\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"176\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"177\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"178\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"179\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"180\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"181\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"182\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"183\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"184\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"185\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"186\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"187\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"188\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"189\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"190\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"191\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"192\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"193\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"194\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"195\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"196\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"197\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"198\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"199\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"200\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"201\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"202\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"203\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"204\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"205\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"206\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"207\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"208\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"209\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"210\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"211\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"212\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"213\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"214\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"215\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"216\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"217\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"218\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"219\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"220\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"221\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"222\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"223\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"224\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"225\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"226\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"227\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"228\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"229\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"230\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"231\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"232\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"233\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"234\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"235\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"236\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"237\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"238\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"239\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"240\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"241\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"242\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"243\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"244\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"245\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"246\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"247\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"248\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"249\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"250\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"251\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"252\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"253\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"254\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"255\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"256\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"257\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"258\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"259\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"260\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"261\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"262\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"263\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"264\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"265\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"266\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"267\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"268\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"269\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"270\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"271\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"272\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"273\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"274\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"275\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"276\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"277\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"278\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"279\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"280\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"281\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"282\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"283\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"284\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"285\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"286\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"287\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"288\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"289\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"290\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"291\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"292\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"293\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"294\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"295\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"296\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"297\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"298\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"299\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"300\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"301\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"302\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"303\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"304\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"305\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"306\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"307\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"308\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"309\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"310\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"311\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"312\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"313\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"314\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"315\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"316\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"317\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"318\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"319\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"320\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"321\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"322\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"323\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"324\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"325\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"326\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"327\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"328\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"329\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"330\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"331\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"332\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"333\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"334\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"335\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"336\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"337\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"338\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"339\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"340\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"341\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"342\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"343\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"344\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"345\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"346\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"347\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"348\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"349\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"350\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"351\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"352\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"353\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"354\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"355\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"356\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"357\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"358\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"359\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"360\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"361\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"362\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"363\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"364\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"365\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"366\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"367\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"368\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"369\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"370\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"371\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"372\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"373\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"374\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"375\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"376\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"377\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"378\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"379\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"380\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"381\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"382\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"383\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"384\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"385\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"386\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"387\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"388\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"389\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"390\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"391\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"392\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"393\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"394\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"395\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"396\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"397\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"398\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"399\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"400\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"401\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"402\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"403\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"404\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"405\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"406\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"407\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"408\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"409\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"410\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"411\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"412\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"413\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"414\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"415\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"416\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"417\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"418\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"419\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"420\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"421\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"422\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"423\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"424\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"425\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"426\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"427\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"428\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"429\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"430\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"431\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"432\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"433\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"434\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"435\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"436\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"437\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"438\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"439\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"440\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"441\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"442\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"443\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"444\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"445\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"446\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"447\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"448\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"449\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"450\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"451\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"452\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"453\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"454\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"455\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"456\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"457\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"458\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"459\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"460\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"461\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"462\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"463\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"464\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"465\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"466\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"467\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"468\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"469\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"470\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"471\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"472\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"473\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"474\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"475\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"476\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"477\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"478\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"479\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"480\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"481\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"482\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"483\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"484\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"485\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"486\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"487\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"488\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"489\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"490\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"491\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"492\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"493\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"494\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"495\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"496\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"497\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"498\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"499\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"}]}", - "status": 413, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Request Payload sent is too large to be processed. Limit request size to: 524288\"}}}", - "responseHeaders": { - "apim-request-id": "354d7b6a-89c0-49e6-bca9-2f805166538b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fabb23fcf348878da5328d2e1b041a32" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "710405", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000596-0000000000001392-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9f82e240-cea5-46ae-a5b4-643cdb6a1c71", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "1", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "2", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "3", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "4", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "5", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "6", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "7", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "8", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "9", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "10", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "11", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "12", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "13", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "14", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "15", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "16", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "17", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "18", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "19", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "20", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "21", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "22", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "23", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "24", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "25", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "26", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "27", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "28", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "29", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "30", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "31", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "32", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "33", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "34", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "35", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "36", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "37", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "38", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "39", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "40", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "41", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "42", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "43", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "44", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "45", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "46", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "47", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "48", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "49", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "50", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "51", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "52", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "53", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "54", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "55", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "56", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "57", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "58", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "59", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "60", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "61", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "62", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "63", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "64", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "65", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "66", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "67", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "68", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "69", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "70", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "71", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "72", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "73", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "74", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "75", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "76", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "77", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "78", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "79", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "80", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "81", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "82", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "83", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "84", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "85", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "86", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "87", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "88", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "89", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "90", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "91", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "92", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "93", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "94", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "95", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "96", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "97", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "98", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "99", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "100", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "101", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "102", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "103", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "104", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "105", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "106", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "107", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "108", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "109", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "110", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "111", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "112", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "113", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "114", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "115", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "116", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "117", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "118", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "119", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "120", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "121", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "122", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "123", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "124", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "125", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "126", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "127", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "128", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "129", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "130", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "131", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "132", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "133", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "134", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "135", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "136", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "137", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "138", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "139", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "140", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "141", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "142", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "143", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "144", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "145", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "146", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "147", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "148", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "149", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "150", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "151", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "152", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "153", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "154", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "155", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "156", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "157", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "158", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "159", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "160", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "161", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "162", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "163", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "164", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "165", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "166", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "167", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "168", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "169", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "170", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "171", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "172", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "173", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "174", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "175", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "176", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "177", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "178", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "179", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "180", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "181", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "182", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "183", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "184", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "185", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "186", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "187", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "188", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "189", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "190", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "191", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "192", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "193", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "194", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "195", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "196", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "197", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "198", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "199", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "200", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "201", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "202", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "203", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "204", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "205", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "206", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "207", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "208", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "209", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "210", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "211", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "212", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "213", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "214", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "215", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "216", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "217", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "218", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "219", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "220", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "221", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "222", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "223", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "224", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "225", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "226", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "227", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "228", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "229", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "230", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "231", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "232", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "233", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "234", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "235", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "236", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "237", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "238", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "239", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "240", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "241", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "242", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "243", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "244", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "245", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "246", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "247", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "248", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "249", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "250", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "251", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "252", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "253", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "254", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "255", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "256", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "257", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "258", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "259", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "260", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "261", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "262", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "263", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "264", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "265", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "266", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "267", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "268", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "269", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "270", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "271", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "272", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "273", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "274", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "275", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "276", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "277", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "278", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "279", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "280", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "281", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "282", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "283", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "284", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "285", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "286", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "287", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "288", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "289", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "290", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "291", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "292", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "293", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "294", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "295", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "296", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "297", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "298", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "299", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "300", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "301", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "302", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "303", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "304", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "305", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "306", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "307", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "308", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "309", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "310", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "311", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "312", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "313", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "314", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "315", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "316", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "317", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "318", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "319", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "320", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "321", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "322", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "323", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "324", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "325", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "326", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "327", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "328", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "329", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "330", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "331", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "332", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "333", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "334", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "335", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "336", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "337", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "338", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "339", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "340", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "341", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "342", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "343", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "344", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "345", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "346", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "347", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "348", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "349", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "350", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "351", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "352", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "353", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "354", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "355", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "356", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "357", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "358", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "359", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "360", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "361", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "362", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "363", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "364", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "365", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "366", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "367", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "368", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "369", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "370", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "371", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "372", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "373", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "374", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "375", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "376", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "377", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "378", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "379", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "380", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "381", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "382", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "383", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "384", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "385", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "386", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "387", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "388", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "389", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "390", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "391", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "392", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "393", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "394", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "395", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "396", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "397", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "398", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "399", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "400", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "401", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "402", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "403", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "404", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "405", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "406", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "407", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "408", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "409", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "410", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "411", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "412", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "413", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "414", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "415", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "416", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "417", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "418", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "419", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "420", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "421", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "422", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "423", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "424", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "425", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "426", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "427", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "428", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "429", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "430", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "431", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "432", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "433", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "434", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "435", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "436", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "437", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "438", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "439", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "440", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "441", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "442", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "443", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "444", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "445", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "446", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "447", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "448", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "449", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "450", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "451", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "452", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "453", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "454", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "455", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "456", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "457", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "458", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "459", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "460", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "461", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "462", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "463", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "464", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "465", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "466", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "467", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "468", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "469", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "470", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "471", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "472", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "473", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "474", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "475", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "476", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "477", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "478", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "479", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "480", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "481", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "482", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "483", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "484", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "485", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "486", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "487", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "488", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "489", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "490", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "491", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "492", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "493", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "494", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "495", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "496", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "497", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "498", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "499", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + } + ] + }, + "StatusCode": 413, + "ResponseHeaders": { + "apim-request-id": "a1f7a73f-11de-46cc-8b43-9a803fe6d092", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Request Payload sent is too large to be processed. Limit request size to: 524288" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json index bf0095db064f..54eb5c0964b9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json @@ -1,112 +1,251 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:23 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - NCUS ProdSlices", - "x-ms-request-id": "f948e482-dbea-4a35-9a49-344eb45d0300" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "model-version": "latest", - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "272ed910-4a1a-40f1-8b2e-5e295c4e45b5", - "date": "Sat, 23 Oct 2021 01:02:22 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1d913988-155e-448b-8215-cf0aeb16afdc", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "286" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1d913988-155e-448b-8215-cf0aeb16afdc", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1d913988-155e-448b-8215-cf0aeb16afdc\",\"lastUpdateDateTime\":\"2021-10-23T01:02:23Z\",\"createdDateTime\":\"2021-10-23T01:02:23Z\",\"expirationDateTime\":\"2021-10-24T01:02:23Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "e11d5b23-74e0-4dc7-ab40-17fb2213451f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1d913988-155e-448b-8215-cf0aeb16afdc", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1d913988-155e-448b-8215-cf0aeb16afdc\",\"lastUpdateDateTime\":\"2021-10-23T01:02:23Z\",\"createdDateTime\":\"2021-10-23T01:02:23Z\",\"expirationDateTime\":\"2021-10-24T01:02:23Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d0ba94ca-f1df-4f7c-afc7-0e8762bf239c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/1d913988-155e-448b-8215-cf0aeb16afdc", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"1d913988-155e-448b-8215-cf0aeb16afdc\",\"lastUpdateDateTime\":\"2021-10-23T01:02:24Z\",\"createdDateTime\":\"2021-10-23T01:02:23Z\",\"expirationDateTime\":\"2021-10-24T01:02:23Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"statistics\":{\"documentsCount\":5,\"validDocumentsCount\":4,\"erroneousDocumentsCount\":1,\"transactionsCount\":4},\"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\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "460f0d4d-2c6f-423a-a38f-a2a618bca093", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "190" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b7886f5b0094498f9a0939c3cb1bca51" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?model-version=latest\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000612-0000000000001432-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "04cdca64-a68f-4c72-97aa-1288e609174f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a9605a3d-1a31-4539-8cf7-cbf5f8b90672", + "Date": "Fri, 18 Feb 2022 19:19:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ad07279a-f020-4c7f-8a0b-f2334973d897", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "203" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ad07279a-f020-4c7f-8a0b-f2334973d897?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000613-0000000000001434-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9bcd08fc-705e-42e4-acf0-beab3dc603a5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b875c0c-c677-48bc-bee6-4283d7deca90", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ad07279a-f020-4c7f-8a0b-f2334973d897", + "lastUpdateDateTime": "2022-02-18T19:19:15Z", + "createdDateTime": "2022-02-18T19:19:15Z", + "expirationDateTime": "2022-02-19T19:19:15Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ad07279a-f020-4c7f-8a0b-f2334973d897?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000614-0000000000001436-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f0587a59-1221-4bd9-866a-26b02de88d40", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0515f708-a05e-44cd-864a-fbd89ba880b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ad07279a-f020-4c7f-8a0b-f2334973d897", + "lastUpdateDateTime": "2022-02-18T19:19:16Z", + "createdDateTime": "2022-02-18T19:19:15Z", + "expirationDateTime": "2022-02-19T19:19:15Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ad07279a-f020-4c7f-8a0b-f2334973d897?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000615-0000000000001438-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b2a4bd31-9a22-433e-8fce-60bf73d00e5e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1676b12-9f5c-4622-ae4c-223903f3a327", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "86" + }, + "ResponseBody": { + "jobId": "ad07279a-f020-4c7f-8a0b-f2334973d897", + "lastUpdateDateTime": "2022-02-18T19:19:16Z", + "createdDateTime": "2022-02-18T19:19:15Z", + "expirationDateTime": "2022-02-19T19:19:15Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 5, + "validDocumentsCount": 4, + "erroneousDocumentsCount": 1, + "transactionsCount": 4 + }, + "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": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json index d37e14ad6f7b..b9a0937c63d1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json @@ -1,127 +1,637 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:05 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "936f42e1-4012-49a1-97c9-b38d12110f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "619bbadc-e5a1-40f8-9f09-2442f5fde721", - "date": "Sat, 23 Oct 2021 01:02:05 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/bfcb49ae-7dc0-47bf-ae83-1b4d48890b87", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/bfcb49ae-7dc0-47bf-ae83-1b4d48890b87", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bfcb49ae-7dc0-47bf-ae83-1b4d48890b87\",\"lastUpdateDateTime\":\"2021-10-23T01:02:06Z\",\"createdDateTime\":\"2021-10-23T01:02:06Z\",\"expirationDateTime\":\"2021-10-24T01:02:06Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "9674445b-7044-4ebc-8dde-c855b3a7257f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/bfcb49ae-7dc0-47bf-ae83-1b4d48890b87", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bfcb49ae-7dc0-47bf-ae83-1b4d48890b87\",\"lastUpdateDateTime\":\"2021-10-23T01:02:06Z\",\"createdDateTime\":\"2021-10-23T01:02:06Z\",\"expirationDateTime\":\"2021-10-24T01:02:06Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "4b9d6d3e-8dac-4da5-8f11-23b312854ca9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/bfcb49ae-7dc0-47bf-ae83-1b4d48890b87", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bfcb49ae-7dc0-47bf-ae83-1b4d48890b87\",\"lastUpdateDateTime\":\"2021-10-23T01:02:07Z\",\"createdDateTime\":\"2021-10-23T01:02:06Z\",\"expirationDateTime\":\"2021-10-24T01:02:06Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "d612cc3c-11a7-4d65-87f0-76191471a9cf", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/bfcb49ae-7dc0-47bf-ae83-1b4d48890b87", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"bfcb49ae-7dc0-47bf-ae83-1b4d48890b87\",\"lastUpdateDateTime\":\"2021-10-23T01:02:07Z\",\"createdDateTime\":\"2021-10-23T01:02:06Z\",\"expirationDateTime\":\"2021-10-24T01:02:06Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "7908f875-10f0-43e1-830d-7b61f773f178", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "107" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8f137e103df6a68f682870f77ddba5fa" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "226", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000585-0000000000001364-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b03170b7-03f5-4331-a35b-fa7f3d629f99", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ab1e7b93-de15-4a6e-9885-517a52300b00", + "Date": "Fri, 18 Feb 2022 19:18:55 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c3919048-ab73-4ec9-9d09-06f4eed09e49", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c3919048-ab73-4ec9-9d09-06f4eed09e49?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000586-0000000000001366-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5af0741c-efed-48e2-8491-4fe089e1d470", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "62e746de-a897-425e-afb0-6abe331f9023", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "c3919048-ab73-4ec9-9d09-06f4eed09e49", + "lastUpdateDateTime": "2022-02-18T19:18:55Z", + "createdDateTime": "2022-02-18T19:18:55Z", + "expirationDateTime": "2022-02-19T19:18:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c3919048-ab73-4ec9-9d09-06f4eed09e49?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000587-0000000000001368-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "68f4d230-3b38-419e-839c-cd0e276616c5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fec10029-7694-42a4-8557-6a865fab3a23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c3919048-ab73-4ec9-9d09-06f4eed09e49", + "lastUpdateDateTime": "2022-02-18T19:18:56Z", + "createdDateTime": "2022-02-18T19:18:55Z", + "expirationDateTime": "2022-02-19T19:18:55Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c3919048-ab73-4ec9-9d09-06f4eed09e49?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000588-0000000000001370-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0c7ca59b-9591-41fa-8129-a1a98dcf6d14", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "533f4dac-0b52-498a-9ac3-188e56261a95", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "c3919048-ab73-4ec9-9d09-06f4eed09e49", + "lastUpdateDateTime": "2022-02-18T19:18:56Z", + "createdDateTime": "2022-02-18T19:18:55Z", + "expirationDateTime": "2022-02-19T19:18:55Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c3919048-ab73-4ec9-9d09-06f4eed09e49?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000589-0000000000001372-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "69078981-2de9-40d3-beb5-295b50a65a03", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c503947b-9546-4f90-820b-db627a4ea4ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:18:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "c3919048-ab73-4ec9-9d09-06f4eed09e49", + "lastUpdateDateTime": "2022-02-18T19:18:56Z", + "createdDateTime": "2022-02-18T19:18:55Z", + "expirationDateTime": "2022-02-19T19:18:55Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json index b4f28ab16e43..3a877cffe598 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json @@ -1,51 +1,108 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:12 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "ffae8c06-3c09-4510-8736-855332310f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 10 records are permitted.\"}}}", - "responseHeaders": { - "apim-request-id": "826bb6c5-2efc-423c-a99c-e36d6b47ff44", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "66790beb97d240ee491fe473237e45f8" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "544", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000595-0000000000001388-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ff3f4350-b54d-4efd-90ff-bee01b253aa9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "739cfa41-8ef3-480f-8682-b658318df625", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 10 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json index f3d63f8d0faa..0c9338c1a69b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json @@ -1,127 +1,271 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:35 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b81c5a0600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "87f278f1-91f0-47aa-8e07-b980a31f1aa3", - "date": "Sat, 23 Oct 2021 01:02:35 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f290357b-ce52-4739-88c1-d9a68aad02a2", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "347" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f290357b-ce52-4739-88c1-d9a68aad02a2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f290357b-ce52-4739-88c1-d9a68aad02a2\",\"lastUpdateDateTime\":\"2021-10-23T01:02:35Z\",\"createdDateTime\":\"2021-10-23T01:02:35Z\",\"expirationDateTime\":\"2021-10-24T01:02:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a69feb3e-ee97-4a1e-9dfe-c4ff468325ac", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f290357b-ce52-4739-88c1-d9a68aad02a2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f290357b-ce52-4739-88c1-d9a68aad02a2\",\"lastUpdateDateTime\":\"2021-10-23T01:02:35Z\",\"createdDateTime\":\"2021-10-23T01:02:35Z\",\"expirationDateTime\":\"2021-10-24T01:02:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "7f032b57-bcc5-4845-a181-152d9e78a0d4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f290357b-ce52-4739-88c1-d9a68aad02a2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f290357b-ce52-4739-88c1-d9a68aad02a2\",\"lastUpdateDateTime\":\"2021-10-23T01:02:36Z\",\"createdDateTime\":\"2021-10-23T01:02:35Z\",\"expirationDateTime\":\"2021-10-24T01:02:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "22083607-faf5-4778-88f4-f0b4c5bec57c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/f290357b-ce52-4739-88c1-d9a68aad02a2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f290357b-ce52-4739-88c1-d9a68aad02a2\",\"lastUpdateDateTime\":\"2021-10-23T01:02:36Z\",\"createdDateTime\":\"2021-10-23T01:02:35Z\",\"expirationDateTime\":\"2021-10-24T01:02:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "0c51a99e-df37-4c9d-be34-ba77a3f2d245", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "147" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6aa0cf0a3da9e1bfb65c832d3ac9338e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000621-0000000000001454-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "07717d01-473d-412f-9167-8bdb7633d8c2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "70f492ee-9921-4b65-a010-3734129aad94", + "Date": "Fri, 18 Feb 2022 19:19:22 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2bcf9ef6-37cc-4c49-bc4a-ab8317efd454", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2bcf9ef6-37cc-4c49-bc4a-ab8317efd454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000622-0000000000001456-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f8559f05-ee64-4ba2-a266-1358246dc561", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b0795915-18d3-4093-8088-e3c503cb6c43", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "2bcf9ef6-37cc-4c49-bc4a-ab8317efd454", + "lastUpdateDateTime": "2022-02-18T19:19:22Z", + "createdDateTime": "2022-02-18T19:19:22Z", + "expirationDateTime": "2022-02-19T19:19:22Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2bcf9ef6-37cc-4c49-bc4a-ab8317efd454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000623-0000000000001458-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8e7ef625-4fb4-45e5-8165-226ad6c65f11", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3180418-d766-4cd2-99c2-63ad14bf6e3a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "2bcf9ef6-37cc-4c49-bc4a-ab8317efd454", + "lastUpdateDateTime": "2022-02-18T19:19:22Z", + "createdDateTime": "2022-02-18T19:19:22Z", + "expirationDateTime": "2022-02-19T19:19:22Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2bcf9ef6-37cc-4c49-bc4a-ab8317efd454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000624-0000000000001460-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7653376e-9880-449a-9d44-12ab750ff1cc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0ce7c1f0-0df7-46aa-98e6-4072cb3fc854", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "2bcf9ef6-37cc-4c49-bc4a-ab8317efd454", + "lastUpdateDateTime": "2022-02-18T19:19:23Z", + "createdDateTime": "2022-02-18T19:19:22Z", + "expirationDateTime": "2022-02-19T19:19:22Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2bcf9ef6-37cc-4c49-bc4a-ab8317efd454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000625-0000000000001462-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0d769d8b-54bc-4ac7-b285-c90738bf1bca", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e36418f5-10ba-4a88-98cb-e6acace4f08f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "2bcf9ef6-37cc-4c49-bc4a-ab8317efd454", + "lastUpdateDateTime": "2022-02-18T19:19:23Z", + "createdDateTime": "2022-02-18T19:19:22Z", + "expirationDateTime": "2022-02-19T19:19:22Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json index 7ffa3b577e6b..adf83581ef9f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json @@ -1,127 +1,270 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:38 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - EUS ProdSlices", - "x-ms-request-id": "6a905e00-80ee-49db-8ae6-c4c856bc0400" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "d3836625-15b3-4b68-be10-4480cafded9c", - "date": "Sat, 23 Oct 2021 01:02:38 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/24082315-6b6d-4d7c-b505-f8b8fed33979", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "254" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/24082315-6b6d-4d7c-b505-f8b8fed33979", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"24082315-6b6d-4d7c-b505-f8b8fed33979\",\"lastUpdateDateTime\":\"2021-10-23T01:02:38Z\",\"createdDateTime\":\"2021-10-23T01:02:38Z\",\"expirationDateTime\":\"2021-10-24T01:02:38Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "eeb0a66c-3735-493c-8189-1ace4c46ad5d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "126" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/24082315-6b6d-4d7c-b505-f8b8fed33979", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"24082315-6b6d-4d7c-b505-f8b8fed33979\",\"lastUpdateDateTime\":\"2021-10-23T01:02:38Z\",\"createdDateTime\":\"2021-10-23T01:02:38Z\",\"expirationDateTime\":\"2021-10-24T01:02:38Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "68a030ee-9033-403b-a4e3-45bd3ed40112", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/24082315-6b6d-4d7c-b505-f8b8fed33979", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"24082315-6b6d-4d7c-b505-f8b8fed33979\",\"lastUpdateDateTime\":\"2021-10-23T01:02:39Z\",\"createdDateTime\":\"2021-10-23T01:02:38Z\",\"expirationDateTime\":\"2021-10-24T01:02:38Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "99988635-7e83-4af7-af73-2a7d6e86227a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "176" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/24082315-6b6d-4d7c-b505-f8b8fed33979", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"24082315-6b6d-4d7c-b505-f8b8fed33979\",\"lastUpdateDateTime\":\"2021-10-23T01:02:39Z\",\"createdDateTime\":\"2021-10-23T01:02:38Z\",\"expirationDateTime\":\"2021-10-24T01:02:38Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "f9e805e7-fb3a-4e55-8aab-3ed3c4d2e650", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e3af59f81016cebcf9e636cd50febc46" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "202", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000626-0000000000001466-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "44237cea-b512-4672-8435-f79b90d68064", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "737c4d5b-1924-4991-9117-a17c0eeb862c", + "Date": "Fri, 18 Feb 2022 19:19:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c250c1c9-61a4-4ea9-9067-d594ceef4397", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c250c1c9-61a4-4ea9-9067-d594ceef4397?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000627-0000000000001468-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a141e7bb-bbb6-4c4d-9545-0aa7639fb3cc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2df7500e-568b-4643-84e7-0966a96ff048", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c250c1c9-61a4-4ea9-9067-d594ceef4397", + "lastUpdateDateTime": "2022-02-18T19:19:26Z", + "createdDateTime": "2022-02-18T19:19:26Z", + "expirationDateTime": "2022-02-19T19:19:26Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c250c1c9-61a4-4ea9-9067-d594ceef4397?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000628-0000000000001470-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b007b942-851e-49a3-9b88-59db130e4a7e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4c498c0-3528-477d-8c60-bb13b96a6370", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "c250c1c9-61a4-4ea9-9067-d594ceef4397", + "lastUpdateDateTime": "2022-02-18T19:19:26Z", + "createdDateTime": "2022-02-18T19:19:26Z", + "expirationDateTime": "2022-02-19T19:19:26Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c250c1c9-61a4-4ea9-9067-d594ceef4397?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000629-0000000000001472-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "638b0785-16c1-4472-b418-4120f7ce7ed4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca7c08dc-9688-4c16-ae94-583f4893494d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "94" + }, + "ResponseBody": { + "jobId": "c250c1c9-61a4-4ea9-9067-d594ceef4397", + "lastUpdateDateTime": "2022-02-18T19:19:27Z", + "createdDateTime": "2022-02-18T19:19:26Z", + "expirationDateTime": "2022-02-19T19:19:26Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c250c1c9-61a4-4ea9-9067-d594ceef4397?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000630-0000000000001474-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6386bb1a-ffd4-417f-9a81-51cf56cba743", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6632b894-070c-425b-ae25-03323057c663", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "c250c1c9-61a4-4ea9-9067-d594ceef4397", + "lastUpdateDateTime": "2022-02-18T19:19:27Z", + "createdDateTime": "2022-02-18T19:19:26Z", + "expirationDateTime": "2022-02-19T19:19:26Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json index 8317e2e039e4..c75e99ebcb9e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json @@ -1,184 +1,271 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:25 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - SCUS ProdSlices", - "x-ms-request-id": "04c4e784-742d-4592-94ea-27b8a5580600" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "b6b0dc08-9fa7-4c07-9d5c-0484b4a85e8f", - "date": "Sat, 23 Oct 2021 01:02:26 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "181" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:26Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "051bd0d4-0bc8-4fc5-b739-467e157c0edc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:26Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a5749395-f3de-4c7f-abd8-e1c65e60def0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:26Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1392064b-45eb-4117-bad4-c6051e1182ae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:29Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "aa73e6bd-b58f-4757-a530-275581cab886", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:29Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d84ef924-bb07-4d79-bb58-4ce29fde9754", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:34Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "7b03efe5-db41-46c2-a806-cb50708887af", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2d134142-3827-447b-bb16-1e3aa925a89a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2d134142-3827-447b-bb16-1e3aa925a89a\",\"lastUpdateDateTime\":\"2021-10-23T01:02:34Z\",\"createdDateTime\":\"2021-10-23T01:02:26Z\",\"expirationDateTime\":\"2021-10-24T01:02:26Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "cfe33ebb-5ae2-43b5-b263-ccaba1162aa6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "206" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "90b8f6a3eb04ec8034dd179929e5d389" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000616-0000000000001442-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "60a597c0-0dc8-4606-b9ca-abf5ad26728f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "23aaa99a-cee3-4eb1-b7e6-fe2dd00b356d", + "Date": "Fri, 18 Feb 2022 19:19:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d92ff068-5fbf-47bb-9559-a8f47781d654", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "215" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d92ff068-5fbf-47bb-9559-a8f47781d654?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000617-0000000000001444-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7b4dd6af-b57d-4547-8c7c-efd132f131a9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2adcc4b7-e839-4330-a5f3-64c564d96412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "d92ff068-5fbf-47bb-9559-a8f47781d654", + "lastUpdateDateTime": "2022-02-18T19:19:19Z", + "createdDateTime": "2022-02-18T19:19:19Z", + "expirationDateTime": "2022-02-19T19:19:19Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d92ff068-5fbf-47bb-9559-a8f47781d654?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000618-0000000000001446-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7e0293a1-e4d4-4cfc-853f-a97df86255c1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e07b8dbf-af76-43e1-96c2-68fb5072565d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "d92ff068-5fbf-47bb-9559-a8f47781d654", + "lastUpdateDateTime": "2022-02-18T19:19:19Z", + "createdDateTime": "2022-02-18T19:19:19Z", + "expirationDateTime": "2022-02-19T19:19:19Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d92ff068-5fbf-47bb-9559-a8f47781d654?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000619-0000000000001448-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "66625464-fadd-4b48-aa24-d570229fa5cc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9ceaac4f-ff77-4a2d-a6cb-01135d0b207c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "74" + }, + "ResponseBody": { + "jobId": "d92ff068-5fbf-47bb-9559-a8f47781d654", + "lastUpdateDateTime": "2022-02-18T19:19:20Z", + "createdDateTime": "2022-02-18T19:19:19Z", + "expirationDateTime": "2022-02-19T19:19:19Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d92ff068-5fbf-47bb-9559-a8f47781d654?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000620-0000000000001450-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3b38236e-040d-4a9b-b8cd-3c1f816a1134", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e9cc43a5-197a-45c3-bac3-97c7b7efecb2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "d92ff068-5fbf-47bb-9559-a8f47781d654", + "lastUpdateDateTime": "2022-02-18T19:19:20Z", + "createdDateTime": "2022-02-18T19:19:19Z", + "expirationDateTime": "2022-02-19T19:19:19Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json index 99cbcbaf7335..9aacda782357 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json @@ -1,127 +1,284 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:41 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12171.14 - WUS2 ProdSlices", - "x-ms-request-id": "ffae8c06-3c09-4510-8736-855300350f00" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I should take my cat to the veterinarian.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "de32c618-a97f-46c2-8948-d35847e829da", - "date": "Sat, 23 Oct 2021 01:02:40 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/42c51a02-1717-4076-ac2b-2389b8c855b4", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "370" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/42c51a02-1717-4076-ac2b-2389b8c855b4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"42c51a02-1717-4076-ac2b-2389b8c855b4\",\"lastUpdateDateTime\":\"2021-10-23T01:02:41Z\",\"createdDateTime\":\"2021-10-23T01:02:41Z\",\"expirationDateTime\":\"2021-10-24T01:02:41Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "610f104e-adcc-48d5-abb5-1d01c82165ba", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/42c51a02-1717-4076-ac2b-2389b8c855b4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"42c51a02-1717-4076-ac2b-2389b8c855b4\",\"lastUpdateDateTime\":\"2021-10-23T01:02:41Z\",\"createdDateTime\":\"2021-10-23T01:02:41Z\",\"expirationDateTime\":\"2021-10-24T01:02:41Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "11c264c7-ad6b-409d-b433-d10314024d55", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/42c51a02-1717-4076-ac2b-2389b8c855b4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"42c51a02-1717-4076-ac2b-2389b8c855b4\",\"lastUpdateDateTime\":\"2021-10-23T01:02:42Z\",\"createdDateTime\":\"2021-10-23T01:02:41Z\",\"expirationDateTime\":\"2021-10-24T01:02:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "229dd7a7-aaa8-449b-9cde-823056389371", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "165" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/42c51a02-1717-4076-ac2b-2389b8c855b4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"42c51a02-1717-4076-ac2b-2389b8c855b4\",\"lastUpdateDateTime\":\"2021-10-23T01:02:42Z\",\"createdDateTime\":\"2021-10-23T01:02:41Z\",\"expirationDateTime\":\"2021-10-24T01:02:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "3a84f899-d4a3-43df-b03c-f7cd1b826604", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 01:02:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "225" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3e42e54d0012ad7e80c3bdf7d4a9294e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "171", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000631-0000000000001478-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "13a5c65d-e60c-4885-905a-756a8aa39403", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I should take my cat to the veterinarian." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e407c0ec-21e8-489a-9aa8-033e50424980", + "Date": "Fri, 18 Feb 2022 19:19:30 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2012c33f-d153-4007-a54c-67ff7bdd7f81", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2012c33f-d153-4007-a54c-67ff7bdd7f81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000632-0000000000001480-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3109b49f-be7f-4963-92ba-098e3e9f1169", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "25cf911c-032f-42e2-90aa-c9901429bf2d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "2012c33f-d153-4007-a54c-67ff7bdd7f81", + "lastUpdateDateTime": "2022-02-18T19:19:30Z", + "createdDateTime": "2022-02-18T19:19:30Z", + "expirationDateTime": "2022-02-19T19:19:30Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2012c33f-d153-4007-a54c-67ff7bdd7f81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000633-0000000000001482-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3e121aa1-eaeb-4134-91ca-8a9542bd6173", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "521afe32-0ec9-4a88-82ce-a39ad493a045", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "2012c33f-d153-4007-a54c-67ff7bdd7f81", + "lastUpdateDateTime": "2022-02-18T19:19:30Z", + "createdDateTime": "2022-02-18T19:19:30Z", + "expirationDateTime": "2022-02-19T19:19:30Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2012c33f-d153-4007-a54c-67ff7bdd7f81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000634-0000000000001484-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "12e2980f-f630-475e-a236-eab4ceee412f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "35ca1b1f-e74b-46f2-ad63-b97e293d0755", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "2012c33f-d153-4007-a54c-67ff7bdd7f81", + "lastUpdateDateTime": "2022-02-18T19:19:30Z", + "createdDateTime": "2022-02-18T19:19:30Z", + "expirationDateTime": "2022-02-19T19:19:30Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2012c33f-d153-4007-a54c-67ff7bdd7f81?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000635-0000000000001486-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0a1cb876-359e-4bf5-b93f-43bd9bac32c8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a39377be-31a3-410e-9fa8-449d0fa47259", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:19:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "jobId": "2012c33f-d153-4007-a54c-67ff7bdd7f81", + "lastUpdateDateTime": "2022-02-18T19:19:30Z", + "createdDateTime": "2022-02-18T19:19:30Z", + "expirationDateTime": "2022-02-19T19:19:30Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json index a36f3f9966eb..862c64c778ec 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json @@ -1,28 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "a167c62e-e450-406a-b55c-43ca09b657af", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "119" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8b01993817087370bb908d9a38a4c2e3" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000001-0000000000000002-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a884d8c8-ccc1-4a6f-b5fc-5c6ca72a817d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4f8f5cf-cacf-4ba5-b825-71031f26c7f3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "153" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json index 44563e3ffc1f..f61043cc077e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -1,28 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "898be0ae-70d1-4ce4-90f3-0abe1db759d6", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4b8d21704d9ca84d28e03111e415243b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000002-0000000000000004-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b49cdb59-b3a3-4463-b97a-b6819e3770a7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7347206-5feb-4fab-a7ac-bc7d20d10242", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json index b85a33dfb437..bcb4da7575c7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -1,28 +1,240 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.89,\"neutral\":0.08,\"negative\":0.03},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.89,\"neutral\":0.08,\"negative\":0.03},\"offset\":0,\"length\":73,\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\"}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.11,\"neutral\":0.29,\"negative\":0.6},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.11,\"neutral\":0.29,\"negative\":0.6},\"offset\":0,\"length\":29,\"text\":\"La carretera estaba atascada.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.09,\"neutral\":0.58,\"negative\":0.33},\"offset\":30,\"length\":35,\"text\":\"Había mucho tráfico el día de ayer.\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "5c36b9c4-80cb-467c-b555-5f7d1742a186", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "00180065469789c0a8b259a0b5727975" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000006-0000000000000012-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8ac8d797-66e3-4271-8f44-930eb32ba681", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "63f23684-719f-4ebc-b6c9-5a76fb9ab29f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:10:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "446" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "offset": 0, + "length": 73, + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos." + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "offset": 0, + "length": 29, + "text": "La carretera estaba atascada." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.09, + "neutral": 0.58, + "negative": 0.33 + }, + "offset": 30, + "length": 35, + "text": "Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json index 1073682375dd..a4395f2efdf2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json @@ -1,29 +1,125 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"The food and service is not good\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":32,\"text\":\"The food and service is not good\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":13,\"length\":7,\"text\":\"service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":28,\"length\":4,\"text\":\"good\",\"isNegated\":true}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "550aab1f-82b6-4f02-8eea-63fdd5e94bf2", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "a8f83bf62f937724c49fbdc52c92cd01" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "84", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000008-0000000000000016-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a1802d39-7b93-49d7-b06e-e3a18955e9ee", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food and service is not good", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b89e4f99-d4b3-4b2b-86a7-ab21d8fc2b54", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "113" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 32, + "text": "The food and service is not good", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 13, + "length": 7, + "text": "service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 28, + "length": 4, + "text": "good", + "isNegated": true + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json index d23e24aa087a..7b0cf97b1097 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json @@ -1,29 +1,80 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"today is a hot day\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.1,\"neutral\":0.88,\"negative\":0.02},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.1,\"neutral\":0.88,\"negative\":0.02},\"offset\":0,\"length\":18,\"text\":\"today is a hot day\",\"targets\":[],\"assessments\":[]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "3734937e-8c60-4501-ad12-0bc4c6cf37ce", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4a32b51201e582791f5a784bb39eb256" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "70", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000009-0000000000000018-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8f3bcf08-07ef-4190-8e51-5113986e83bd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "today is a hot day", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb5abff2-e1f0-4cd2-b288-a10405fdc668", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "offset": 0, + "length": 18, + "text": "today is a hot day", + "targets": [], + "assessments": [] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json index 49a848b1f238..9808184562b3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json @@ -1,29 +1,124 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"It has a sleek premium aluminum design that makes it beautiful to look at.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.98,\"neutral\":0.02,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.98,\"neutral\":0.02,\"negative\":0.0},\"offset\":0,\"length\":74,\"text\":\"It has a sleek premium aluminum design that makes it beautiful to look at.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":32,\"length\":6,\"text\":\"design\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":9,\"length\":5,\"text\":\"sleek\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":7,\"text\":\"premium\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "5938bb20-a2ad-412f-a780-c6fd11982709", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "aec5e48e164c2a8b36c1b91efb4e6a75" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "126", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000007-0000000000000014-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "581942dc-c0ae-4272-9534-56dd5e76a724", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36fe914f-7beb-4cac-bb60-0b5aa947e73b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "182" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "offset": 0, + "length": 74, + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 32, + "length": 6, + "text": "design", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 9, + "length": 5, + "text": "sleek", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 7, + "text": "premium", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json index bba3bd417dfe..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cabbc96937b89ec2ffef29ca710c8540" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json index 060eaa9bf7c9..cc10f5982544 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json @@ -1,29 +1,709 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit", - "opinionMining": "true" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"The food was unacceptable\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"The rooms were beautiful. The AC was good and quiet.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The breakfast was good, but the toilet was smelly.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"The toilet smelled.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "9fe6380e-99bc-40e2-beb7-87cafefd222a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", - "date": "Sat, 23 Oct 2021 00:50:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "40f144d24f3fb5c645999a2c78b3953e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "622", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000004-0000000000000008-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "860c2ea2-e758-4def-8675-b49311209800", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "129c8030-28ab-40d6-8476-c3794f200dc3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", + "Date": "Fri, 18 Feb 2022 19:10:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "187" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json index 6dd70acf9569..d5eaef5b7aca 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -1,28 +1,190 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.99,\"neutral\":0.01,\"negative\":0.0},\"offset\":0,\"length\":86,\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":58,\"text\":\"Unfortunately, it rained during my entire trip to Seattle.\"},{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.7,\"negative\":0.29},\"offset\":59,\"length\":43,\"text\":\"I didn't even get to visit the Space Needle\"}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":101,\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.03,\"negative\":0.96},\"offset\":0,\"length\":42,\"text\":\"I didn't like the last book I read at all.\"}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "95a35131-0e3b-4716-b80a-31c6a0968577", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e151e8485409be49c4aed9e1e27f646b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "531", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000005-0000000000000010-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1cbe19ef-e424-40df-bf74-bfb3aef5de88", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "de13be66-7fa9-49c5-b69b-c3105b1d1860", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json index c804756c3c2b..d3b8a6e9406e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -1,27 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/sentiment", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Hello world!\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2020-04-01\"}", - "responseHeaders": { - "apim-request-id": "1fbedb5c-4f1f-489d-874a-71d7094cf9da", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "95dc0a75a7e111778cfbf0de50a24cb0" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000003-0000000000000006-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "391307b3-baec-4f6d-92eb-55d1a16cc77d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Hello world!", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e115077e-053d-4921-ad6b-d40989232cce", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json index 7ff997b8082c..77d94bc6933d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json @@ -1,26 +1,64 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"impossible\",\"countryHint\":\"fr\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"French\",\"iso6391Name\":\"fr\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "d8a317fb-5f21-488b-afc4-5cfcac456d3e", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1c00e733f3426ca4c2ad539a5e61d689" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "65", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000011-0000000000000022-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1b3b2744-273d-45a4-a444-434513a5ca95", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "impossible", + "countryHint": "fr" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9577c548-56e9-4184-9588-bcaeebdf0a21", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "French", + "iso6391Name": "fr", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json index a40f9506fc4b..d413ce89e55d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -1,26 +1,130 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"mx\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"mx\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"4\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"5\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "0e369850-4f2f-4bd7-9cf2-d28e9ad93832", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fe64a916306e48562569c99a6f167f98" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "651", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000015-0000000000000030-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cbdcdd54-c5c7-4dde-9a4d-805cbb737da9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all." + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "mx" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "mx" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "044df7dd-e261-401f-ab6c-6b6921b93085", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:10:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json index 0f8e734be00d..21b952186cbd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json @@ -1,26 +1,106 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"us\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"us\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"us\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"us\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "c349d9f8-37eb-471c-811c-339b2d2c464d", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cf45d28b6431c9dcf6e5585c883eeed6" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "506", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000010-0000000000000020-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "66fd7ed5-5da7-4293-a198-255a781e1e19", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "us" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "us" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "us" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "us" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e9841164-7764-496d-baa5-f17a1497c2d4", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json index d3b6fa4e32dd..9aacbd051a0b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -1,26 +1,134 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"2\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"3\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"4\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":1.0},\"warnings\":[]},{\"id\":\"5\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "28a43474-5e0d-4e02-9ea5-197cb101a8e1", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "07a89b99a0d5d9f650d0b29b95719c66" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "715", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000013-0000000000000026-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "524b5966-8f07-4a8e-9e56-5a90a5614124", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bd728e3f-a593-4b40-b21e-e26df90cae17", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:10:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json index bff385dc2b75..d7562306abf9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -1,26 +1,64 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I use Azure Functions to develop my service.\",\"countryHint\":\"\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":0.95},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "d3445d9c-cc1c-4cff-960f-165f7ca821f4", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1e4ad2fbcfb9705b49f259dce5dd663f" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "97", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000012-0000000000000024-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "74e33967-4173-45e8-b558-b027ff002e2f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I use Azure Functions to develop my service.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af3748af-90ba-4e56-9232-a435fe8faec8", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.95 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json index f837cfbc7c5b..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7a76e1e1e89f55f4e595e2fbaeab47ee" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json index 4ecb234dc10e..e09409544dd2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -1,25 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/languages", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"hello\",\"countryHint\":\"invalidcountry\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Country Hint.\",\"innererror\":{\"code\":\"InvalidCountryHint\",\"message\":\"Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code.\"}}}],\"modelVersion\":\"2021-01-05\"}", - "responseHeaders": { - "apim-request-id": "5f4ef4d2-6b75-43ab-abd9-b32661fca374", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "47fb39e4d90d4d4f6b254f5b853c7a94" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "72", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000014-0000000000000028-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7398fac8-34e7-48ef-923b-bb716ca9de48", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "hello", + "countryHint": "invalidcountry" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26e9d9f4-f1b0-418e-9520-04aeb0448a9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "message": "Invalid Country Hint.", + "innererror": { + "code": "InvalidCountryHint", + "message": "Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code." + } + } + } + ], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json index 2146167e4b99..d3a86e1a838f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,26 +1,131 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"entire trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"last book\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"Monte Rainier\",\"caminos\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"mucho tráfico\",\"día\",\"carretera\",\"ayer\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "35447a88-6574-478a-aafa-f112e19ae542", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b1fef77e495c77fd0f24ac797998e7cd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000024-0000000000000048-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c11e6aa6-3df9-44c9-b3be-6365bf1a8ec3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c09f558-6540-4537-8537-4ae5736dcbfe", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:10:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "last book" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "Monte Rainier", + "caminos" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "mucho tr\u00E1fico", + "d\u00EDa", + "carretera", + "ayer" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json index c4d26eae65cc..9e98a8783a76 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -1,26 +1,103 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "179d6987-9342-495c-8340-1753c1e4cceb", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "87d3297b8831a7187e4fc0b3fbb0c461" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000022-0000000000000044-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "69e85826-51fe-4548-a89a-2383005b0db3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a63219ca-b168-40ff-b949-fc2cce2d162e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json index 3f60cdfe67b7..db20271730d4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -1,26 +1,103 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "dbd8e6f7-d4bd-4529-a67b-d8d48832f018", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "0615d3d4c4fd132428e37ddec4e40fdd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000021-0000000000000042-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ce0c1aa0-713f-404c-9927-ec5e921d2c27", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f22ece82-ed63-423a-8e5d-9c1cfbc05f94", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json index 0936c6c18e4e..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e3619dd2bea2cc5858c29bf862efe4bd" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json index a22ad85edee0..f464d13e58fe 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -1,25 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "f39da5b4-16e7-41db-a295-08657d92dd32", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7a23f594562b7234b10430b3185b9a05" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000023-0000000000000046-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "af47ad74-dbe7-4502-8c8d-1997b076329a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d55bdfa-5c7c-46dd-946e-5e9db1a8b043", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 8e1624eba7ac..8d9a43af2543 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,28 +1,195 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.61},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.96},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.82},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"Monte Rainier\",\"category\":\"Location\",\"offset\":29,\"length\":13,\"confidenceScore\":0.85}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"carretera\",\"category\":\"Location\",\"offset\":3,\"length\":9,\"confidenceScore\":0.81},{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "69917e50-e487-496e-8f8d-c4cea7ebf36e", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7c7eca1ef4566913e8eabad160d2de95" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000019-0000000000000038-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "13d1c2f0-0201-4b85-a8a4-c9d28d86defe", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b9a742a-317c-45c3-9485-0db8a6a5d872", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:10:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "Monte Rainier", + "category": "Location", + "offset": 29, + "length": 13, + "confidenceScore": 0.85 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "carretera", + "category": "Location", + "offset": 3, + "length": 9, + "confidenceScore": 0.81 + }, + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json index ca587ba56e62..77d04b6c98e0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -1,28 +1,169 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.61},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.96},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.82},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.92}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "f275734f-50ab-4d55-b784-15db16b23974", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "483ba314d4233192906e80e6e7456301" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000017-0000000000000034-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ab17ecdf-dc58-461b-9c68-95b150a0dfa3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "80c07799-9650-4b9f-a74b-ebf8e096ef8d", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json index 59f981e1e427..0bdd7e4ecb05 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -1,28 +1,169 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.61},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.96},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.82},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.92}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "8c18384b-caeb-486f-8f47-2d4a554bd7e0", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ba84ff7f5448122a1514c4eb618c81eb" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000016-0000000000000032-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a135e4b3-91a6-40e4-9482-24f3b53ed386", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2f03219-db45-41de-9218-3b58491424e8", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json index 4867d42431f8..9d61d61334bc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -1,27 +1,83 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 5 records are permitted.\"}}}", - "responseHeaders": { - "apim-request-id": "1a9a38d0-4761-462f-99aa-e25dfe00a3b7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7de71703965569a57d9c84d5ae95763a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000020-0000000000000040-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c343ab38-6d51-43c7-b038-d8c6897e2b4d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "ffcc98cf-3108-497b-ac73-2165e1543023", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json index 678b6ed2704e..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "aa30e0a7c5dbe20f0e0c7ccd6c0fb095" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json index 2123fe68f359..99ba9eb4f1a9 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -1,27 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "4e0dc51f-ba97-4f00-aaa1-af8869830eb8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "93d3c5553b3c71f204cb6844585dc315" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000018-0000000000000036-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5363acd0-7dac-47d8-9ea7-aef2e57e0c4b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb524646-4946-4da6-b520-8aa0d217f995", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index ba6751acad0f..ad8c0669b46d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,28 +1,200 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"bingId\":\"9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906\",\"name\":\"Monte Rainier\",\"matches\":[{\"text\":\"Monte Rainier\",\"offset\":29,\"length\":13,\"confidenceScore\":0.81}],\"language\":\"es\",\"id\":\"Monte Rainier\",\"url\":\"https://es.wikipedia.org/wiki/Monte_Rainier\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "ac4dcef3-049c-430e-b5c4-288234a4d3c8", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e409ba5d8d13f9e12d9f5e0ea02b9921" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000038-0000000000000076-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7ec72b31-249c-43b5-8447-9b69b63d199f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7bb6d4a9-a58c-4f05-a8cc-9f28147b2abb", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:10:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "bingId": "9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906", + "name": "Monte Rainier", + "matches": [ + { + "text": "Monte Rainier", + "offset": 29, + "length": 13, + "confidenceScore": 0.81 + } + ], + "language": "es", + "id": "Monte Rainier", + "url": "https://es.wikipedia.org/wiki/Monte_Rainier", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json index a314348a4d90..36ac11a58dfb 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -1,28 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "1e0e79d2-ad8d-40ee-850f-1e032353a0b5", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4f0d5d390bc38c36eaf5bdaaa4349e83" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000036-0000000000000072-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e0a0fb0c-9a7b-4032-acc1-56eb24550f5f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f0d59e6-f596-4518-a92d-e73bf977359b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json index 1d1c91329d00..54b84006661d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -1,28 +1,173 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":26,\"length\":7,\"confidenceScore\":0.21}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":65,\"length\":12,\"confidenceScore\":0.42}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"5fbba6b8-85e1-4d41-9444-d9055436e473\",\"name\":\"Seattle\",\"matches\":[{\"text\":\"Seattle\",\"offset\":50,\"length\":7,\"confidenceScore\":0.2}],\"language\":\"en\",\"id\":\"Seattle\",\"url\":\"https://en.wikipedia.org/wiki/Seattle\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"f8dd5b08-206d-2554-6e4a-893f51f4de7e\",\"name\":\"Space Needle\",\"matches\":[{\"text\":\"Space Needle\",\"offset\":90,\"length\":12,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Space Needle\",\"url\":\"https://en.wikipedia.org/wiki/Space_Needle\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"bingId\":\"296617ab-4ddb-cc10-beba-56e0f42af76b\",\"name\":\"Saturday\",\"matches\":[{\"text\":\"Saturday\",\"offset\":25,\"length\":8,\"confidenceScore\":0.05}],\"language\":\"en\",\"id\":\"Saturday\",\"url\":\"https://en.wikipedia.org/wiki/Saturday\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "f34c95cc-0c56-4cf4-bc6e-c0a3be81c2a6", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "30c29afb38fdf2180cc2cedeb3f4fc16" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000035-0000000000000070-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "778214ab-9bed-4147-b6e9-f76122b8c20a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55ad8a02-40d5-4756-8609-a6b2bfbb9e3a", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json index 954853e03fba..de938d35da51 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -1,27 +1,83 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 5 records are permitted.\"}}}", - "responseHeaders": { - "apim-request-id": "fd208731-6557-4f26-a2ea-8493c7915e67", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7de71703965569a57d9c84d5ae95763a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000039-0000000000000078-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5dc28bbc-135c-46b1-b6a3-035df3e3f122", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "f06c9199-f751-4768-8a55-586285f883b7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json index 6e5f1ec654ea..f721723386d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json @@ -1,8 +1,4 @@ { - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "85638de68feea86c1695a14c61ca59de" -} \ No newline at end of file + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json index 2f5c9e6fb59d..064f2ed13f92 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -1,27 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"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=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}", - "responseHeaders": { - "apim-request-id": "8b6f69ec-ac0a-4098-aba4-cd571bda9748", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5fb15576b315482f44754cc0f6d91801" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000037-0000000000000074-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "572c4bd7-064c-424a-85fd-7dced4a663f1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4326299-79ef-4d90-b002-96f28f90f147", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "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=named-entity-recognition" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json index 61df5937aa01..ab117cccd4e0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json @@ -1,29 +1,76 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit", - "domain": "PHI" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I work at Microsoft and my phone number is 333-333-3333\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I work at ********* and my phone number is ************\",\"id\":\"0\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":10,\"length\":9,\"confidenceScore\":0.94},{\"text\":\"333-333-3333\",\"category\":\"PhoneNumber\",\"offset\":43,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "64fd9673-7e37-4f6a-80d0-f559067561ab", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6aacb0e9cdd05e66fe9904538c611eab" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026domain=PHI", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "107", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000031-0000000000000062-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2352320e-e4b7-43d1-900b-7fd34339c698", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I work at Microsoft and my phone number is 333-333-3333", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f23cc1cb-46e3-4a6c-979d-4f6ad64ec52f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I work at ********* and my phone number is ************", + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 10, + "length": 9, + "confidenceScore": 0.94 + }, + { + "text": "333-333-3333", + "category": "PhoneNumber", + "offset": 43, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json index 372698fc22f5..a17f2d496f2a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json @@ -1,29 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit", - "piiCategories": "USSocialSecurityNumber" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "afa502a7-5599-4272-8ba5-49b2ba174fc5", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "715a39f4e2fef48461eed60ed7c423ec" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000032-0000000000000064-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6e0f399e-820b-468e-b6c4-fad33ba48d85", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a49e676f-228d-4be3-aab6-fec833d99c3b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 7efca68ed4ac..98d6195a5353 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -1,28 +1,132 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"1\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"3\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"La carretera estaba atascada. Había mucho tráfico el día de ****.\",\"id\":\"5\",\"entities\":[{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "431ff311-01e5-4e96-a784-ddf101fc2b6f", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5ec8aaf6662a33e07532390829e62e7a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000030-0000000000000060-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "442fb905-04ee-4d13-ae77-e7dbb32cb490", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c74b8bd8-36a2-4705-b034-d65b2d4bb7bd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:10:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "1", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ****.", + "id": "5", + "entities": [ + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json index 9f86547ec5eb..b03e3fd19804 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -1,28 +1,112 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"I didn't like the last book I read at all.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "1f5f88e5-b0fa-4e12-852a-71780232364e", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "a7239aa57ac74e2a4ab2321e2ed80998" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000027-0000000000000054-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d17173f7-16f7-4da8-9daf-9117c8d42dd9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75c4e80d-ecd0-4c92-9855-25d4a23d268b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json index 696459069515..b816c4f86ad2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -1,28 +1,112 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.\",\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"redactedText\":\"I didn't like the last book I read at all.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "9ce3d25a-57c2-4347-a58c-7870d4089362", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "44cf1e73908b195dbdfa52311ea4fdef" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000026-0000000000000052-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f18b0f88-be13-4042-a3ad-42c3bfeef2a4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "faf908a4-d125-4e21-983a-15f0e7280151", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:10:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json index bc7afaa16429..a2ac04d8c267 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Your Social Security Number is 859-98-0987.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Your Social Security Number is ***********.\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "67f1e9e0-3734-470d-a0b5-46e80e269e2a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "30fd28c96f68f1a412fbad3315f2a3a2" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "95", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000028-0000000000000056-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fed46b4a-7a7e-43b9-b495-71d2e5f693ab", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Your Social Security Number is 859-98-0987.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "963e0171-6bba-459f-a935-7f157b41bbb4", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Your Social Security Number is ***********.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json index aa8f13a0efb7..fbfaa563f505 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json @@ -1,27 +1,52 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid Request.\",\"innererror\":{\"code\":\"MissingInputRecords\",\"message\":\"Missing input records.\"}}}", - "responseHeaders": { - "apim-request-id": "720278c1-e6d2-4305-9a6c-df5fbc973f1f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "01afa681adb7f537c0fd8ec67214b5c0" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000025-0000000000000050-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d204edec-ca82-4ecd-9baf-ca06db86540d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "c6d1f91d-6446-4ffa-b9b1-e06ef7bc64e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "MissingInputRecords", + "message": "Missing input records." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json index 41c760ec0c22..7b59007ab0a3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json @@ -1,48 +1,140 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Patient name is *** and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"Joe\",\"category\":\"Person\",\"offset\":16,\"length\":3,\"confidenceScore\":0.78},{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "0f0a8a1d-9cc9-4da2-9f1a-311bd85fc739", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" - } - }, - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit", - "piiCategories": "USSocialSecurityNumber" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "b2675049-8ee5-4646-80da-fcdf3a8e35da", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "de5b4b37967461f9ed943fb6f84228e5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000033-0000000000000066-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fb17c632-c786-49d4-af10-8881bd35a139", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3223877f-7405-4587-957b-3d50d80edfc5", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is *** and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "Joe", + "category": "Person", + "offset": 16, + "length": 3, + "confidenceScore": 0.78 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000034-0000000000000068-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1e78c60b-ce96-451d-a19a-7b7ad25e8a05", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2093faf1-8c21-4f2a-8a2a-0dce5bbddb64", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json index 7089eb27a20c..c11b4a67a6a1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -1,27 +1,65 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", - "status": 200, - "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "3e88415a-3aab-40dc-a1d0-fb1636409158", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "80acdc66d0bcc0cc3b0446e597fc56bf" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000029-0000000000000058-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f024f9f4-5a89-4b7b-a437-3287293f8dd5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18d5dd45-f887-463d-bc59-9546b051d4fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:10:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json index c64efb65e75d..c384e860ae9c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "62f9b030-038b-44d6-93c4-82687b063915", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1405fd53d6237d457a1bba0408b1e696" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000044-0000000000000088-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0994537b-ed41-4024-af61-55eba711bbb1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59240380-a96a-4803-8436-1f7b0373c900", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json index c514a07c124a..07b23daba452 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "58b77632-41d9-48b6-b7ae-fb3cafb6cbfa", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "bd8f8e11c32bea3ce834804ae6e55eba" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000045-0000000000000090-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4479d767-04d4-484a-b733-d227c0cee7d8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f60a6f79-3a10-40ab-9d0c-afba69195499", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json index aa012a94495d..a316dcbd0d57 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "9898f166-e60a-435d-83f8-2a7b5ce9dd09", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "908cd4b4839d69ee785150461c56ff98" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000040-0000000000000080-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "83dc9d29-7c73-4416-ba83-3e01e599dfc9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89e1c6e1-04dd-44cd-a0db-1ba8b95101fb", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json index 4a17e8bfce3e..4609c58fbc34 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "a48814ad-138c-4a5b-aa22-1ff0230db6dc", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "30" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "567cf9233223f7f12a6a5228401a4c20" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000041-0000000000000082-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "435b7fc9-175b-44fa-81a8-583a34adff0f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9bbc26fd-e93b-45dc-a019-04b4b0193f1e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json index d58d5e5532b3..e5713b2622e3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "0aec868d-a03e-4633-81e1-d8a16cf2e6ed", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8d00943bbcf0fb21630156b78d055772" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000042-0000000000000084-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "38e7ec3d-4e1a-41d0-848a-bd3f3bbbc7f3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2691c8b2-1ef3-4a0c-952d-3b392741caa9", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json index d911d3437c4f..07a00c845d0a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"\ud83d\udc69\ud83c\udffb\u200d\ud83d\udc69\ud83c\udffd\u200d\ud83d\udc67\ud83c\udffe\u200d\ud83d\udc66\ud83c\udfff SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"\ud83d\udc69\ud83c\udffb\u200d\ud83d\udc69\ud83c\udffd\u200d\ud83d\udc67\ud83c\udffe\u200d\ud83d\udc66\ud83c\udfff SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":25,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "20cd7b79-0aa0-48e3-933e-f34edfa3e04f", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "75436508d73c2f748b997198dbef2ea3" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000043-0000000000000086-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "538b2586-b5cd-4d61-852e-6afedf32dff2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83391f7d-001b-42df-9b3c-72fc4557e59b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 25, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json index ae537525cc38..8793be28ed21 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "f8cdc600-6a0b-4239-89e8-2b9e3ae4b424", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "36d5a15867f64e61b29bc146c4ef9483" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000046-0000000000000092-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "18eb9a5e-693b-4d98-9477-d8c789195010", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3800c8df-700e-47d2-83c3-fc7572ea3d1b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json index 306d988ee8e8..9ceb09a04c9f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "b209390f-9887-4abf-b246-eb9983432cfd", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "36d5a15867f64e61b29bc146c4ef9483" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000047-0000000000000094-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ded548d7-4683-45fa-bd04-9cca46883cbf", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "98413a01-9d4f-4bb6-8ad7-0b908d964d6e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json index 8d1619dfde4d..35ea76727d69 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "32ebe683-3729-490d-ac93-eb56454ba5cf", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7087283e7c49a7af17336acd08edebd6" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000048-0000000000000096-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4daa774a-1064-4730-a7f3-a535f083c020", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "edefffb2-7e00-465a-a43f-2e68f1838121", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json index 6b935e2a1144..c501444d9498 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "73623627-57e6-4f1e-8be3-1e9f5d412969", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c4168ce455743735cc3b0867596a0298" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000062-0000000000000124-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8bd0bd98-b71e-4e26-bb5c-ff9d343f206a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6c0d9b54-eb2f-40d5-9da7-e7c0cb8ea02e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json index 957f75d5c352..599ab6185924 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "232a973a-c74a-4a93-a153-9d522b5404c7", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "97deed18f72cb452533d75fe71f106cd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000063-0000000000000126-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d20b4310-2174-43a3-b1d3-9bddf1f297d1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc15286a-99ed-4174-8239-9ee26295e00f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json index fe2c6c172538..9c5570014afe 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "b4bdffc0-48ef-492a-8095-ada3bd881294", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4e42b362a5c0bfae3331b57329538488" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000058-0000000000000116-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "565d0b7a-602d-4848-9d9b-f9e35fc04ee2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b984a8b-0918-48fd-9381-29da4f1e96ff", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json index d6d37e64d957..f1ba44251122 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "2af32832-e563-4513-8079-f373f46f77ab", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2056" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c819adc2f07c63a60990e748cd4d68e9" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000059-0000000000000118-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e5b2af08-1f64-437a-902c-941e6fbf906b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b717ad5c-aec1-491e-9f77-ec2a6cc05250", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json index ad2dcef15656..fb573b80b239 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "67b627e3-209c-4324-906c-bf3962d22918", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3a2084188b00fbb623bd37ce1666c56e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000060-0000000000000120-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3f541d2b-e747-451a-b58f-3806f6e5ad9e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b7fa4af-ea2b-4692-bc31-363955892eb3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json index 05b331a67a7f..bb54b5743326 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"\ud83d\udc69\ud83c\udffb\u200d\ud83d\udc69\ud83c\udffd\u200d\ud83d\udc67\ud83c\udffe\u200d\ud83d\udc66\ud83c\udfff SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"\ud83d\udc69\ud83c\udffb\u200d\ud83d\udc69\ud83c\udffd\u200d\ud83d\udc67\ud83c\udffe\u200d\ud83d\udc66\ud83c\udfff SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "f68c5fa7-3759-4db2-8361-cbaa6d625157", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cd6d067309fdf79fc7a14469a1e60099" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000061-0000000000000122-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7e7b1c3c-7182-4bc9-a791-e752f6f08ece", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6d5db85-de78-4209-92a3-5b270763da42", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json index 85e6b0118dd3..09da61571135 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "dbc581c7-0cb6-42f4-be94-11abec0055ae", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b748441acac968abb561573139954822" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000064-0000000000000128-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bd4724d1-6e3a-452a-82eb-d073750fe16b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "914d0f22-cba2-47db-ae26-a100f0c26bbd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json index 1209030db1a0..cf50b1a9581f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "194069bd-78ea-4aef-bd82-a30d270cfeac", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b748441acac968abb561573139954822" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000065-0000000000000130-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8f80a41b-5725-4db8-bf11-863f8f7c37ec", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7685b40-2658-4acb-a358-4da8c84424c3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json index f1db57818f80..40f8b7ffd01a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "TextElement_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "c4329ff7-85a9-4892-aabc-7e016a769243", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5666bd084b5377efc9af0f8dd722e62b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000066-0000000000000132-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5ce677d6-173b-4452-83ba-3bcf496401d7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94976778-f994-4c83-90e6-c2bfd60d78f9", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json index 762802fc1415..7c2c171ff140 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "a4c8cfd2-7f2b-46a0-a4cb-51bde1f26b22", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ab9960d541e7c4bd338117cb7daf5920" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000053-0000000000000106-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0bf37572-37c1-49ac-8fc8-e8ca8b2eb00d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f7827435-76e7-4695-96af-088ee97c4958", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json index a156cb1ad60c..32adffb2986d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "f6fc185d-6fe3-4919-bb4a-c77aa762d1dd", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "0e1b2a9dcd3d5fcaf9d7b9f44a56b3fd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000054-0000000000000108-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b0c8c757-da70-4d55-b6c1-40d441a396f0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be56b8ac-d025-4054-817a-00b8ab9d2429", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json index 326664fcccac..562240a35e3a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "f04b51f2-6a26-40ff-bcee-5780a7b17ca7", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "47884ef2981b03ff59ce02b82a931678" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000049-0000000000000098-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "21b31d15-219a-4c18-973d-b2a194ee4686", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1985ecf-1016-414a-af9b-5a2a53be3deb", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json index a943e6a09849..bed2ea4ec6ee 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "f60bab78-891e-4a12-bd6d-493cd33ea5b9", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "caf1393d64f58fff7dfb3e2d5e88900d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000050-0000000000000100-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c5f8f467-c3e1-478b-b3ae-5a3a701a882e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e8d91887-ced2-468a-8b5e-e31c7c9f10de", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json index d75e9c06a475..acdde2bb8255 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "3880d44f-d332-4651-86ca-0fbf9b4c75dc", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cf86e2d033b790043263dc6047ead0c2" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000051-0000000000000102-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "98c8acd4-bbdc-423b-8985-0222137297a8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ed58c4f-58c8-4206-b55e-e2da8fa70c39", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json index 28d9e65e8c3a..a5be081781f4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"\ud83d\udc69\ud83c\udffb\u200d\ud83d\udc69\ud83c\udffd\u200d\ud83d\udc67\ud83c\udffe\u200d\ud83d\udc66\ud83c\udfff SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"\ud83d\udc69\ud83c\udffb\u200d\ud83d\udc69\ud83c\udffd\u200d\ud83d\udc67\ud83c\udffe\u200d\ud83d\udc66\ud83c\udfff SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "dee4c4ff-df67-46f3-9ce2-a2dcdfcf3379", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ba85026ec528be77d06677cb0241bf4b" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000052-0000000000000104-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "008d6937-90b3-43a4-ae63-b34b703c3c91", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df79e04b-69da-48fb-967f-d1b6e6937c1e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json index 0eafc626eb18..41f3ed33e259 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "bc2ea3c1-3bfd-4778-b075-68ca542b3be4", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "efeafd6bc19716841855e51f9bfcaae5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000055-0000000000000110-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8537d53e-08de-4b6a-9c10-c671fa4b576b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "543cd1d5-ef08-47cd-adcb-01db18e548fe", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json index 2131c8e9f4ab..a4d15cb4ab79 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "12461a52-a04b-4a48-9f69-58c12de9995b", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "efeafd6bc19716841855e51f9bfcaae5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000056-0000000000000112-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d139ee55-5781-4145-8393-4843662f5006", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "113ac1ac-7481-4cc6-b50a-888e33b3e8fd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json index 8019249e0184..e9cddaede73e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json @@ -1,28 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "c0b6ccdb-af29-4332-af42-69c57145bffa", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Sat, 23 Oct 2021 00:50:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "44c2300ce411e8279dc446b4136bb8d1" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000057-0000000000000114-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6f0d00c4-d66f-423e-8a29-8ac8e0b474be", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6e493e1-6e24-49ba-ab55-de919457e39c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:10:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json index 07a8d2eea745..dcf4d68817d7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json @@ -1,215 +1,910 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "bd1cd685-d923-4ee9-84e6-410f2a19ca5a", - "date": "Sat, 23 Oct 2021 00:52:29 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "367" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:30Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "363b981c-5f22-460f-b8d7-cb411511343d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:30Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "e8e09395-9567-41ba-a326-608dd05533c2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:31Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "c1574e59-ea14-41c7-93db-21b4f3561825", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:33Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "9c443e73-882d-4180-881d-f4b5eb1e36a0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:36Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "762ed660-a122-4668-8ee6-53c8c91842e3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "170" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:36Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "afdfa58f-fd42-4f41-b357-a91a5f36b67e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "209" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:36Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "cbdf7316-9963-4f3f-8820-292c08d22702", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "248" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:36Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "0b6fea66-f049-49e9-a272-f1bbfecd42de", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "247" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:45Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:45.0477141Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "b07bbbe3-dec0-4ce5-8f30-5cdc83418e3d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "214" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8da5b9ab-2696-4d26-a039-091ff5be15f7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8da5b9ab-2696-4d26-a039-091ff5be15f7\",\"lastUpdateDateTime\":\"2021-10-23T00:52:45Z\",\"createdDateTime\":\"2021-10-23T00:52:29Z\",\"expirationDateTime\":\"2021-10-24T00:52:29Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:31.7551756Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:33.1693888Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:45.0477141Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "74e862a9-1c9c-432a-8dc1-3ffb1d5c042a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "375" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "639ee125a50ec5326e37e1bc1f357d53" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "497", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000135-0000000000000270-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "60f48d87-7180-4e7b-bd96-6d091057a0db", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4839e01f-8f10-47e8-a86b-cf5f156e47f2", + "Date": "Fri, 18 Feb 2022 19:11:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "244" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000136-0000000000000272-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b07f948e-f4f7-4d79-a7e1-9b3aa43778c0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "76c59497-0470-4e4e-b6b7-4b907ae3e5c3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:50Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000137-0000000000000274-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d70ba2bb-b1b5-40c1-accd-5143e3637c89", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5c1d39a6-2b93-416f-bf5c-9df5dedd381b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:50Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000138-0000000000000276-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ef224de9-72bf-414b-94ae-de359a1195be", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a90a440-b1f8-41a0-81b4-f9a916d4085f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "93" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:52Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:52.3956598Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000139-0000000000000278-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f664820c-7557-4d73-aeb5-bccb38d738d4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6000fdac-b503-4027-8397-bce8b68e64bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:53Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:52.3956598Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:53.1592003Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000140-0000000000000280-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "750572a1-0675-4b18-b872-257229c7b808", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9987982-53b0-4714-b486-7f55a91e477b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "361" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:56Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:52.3956598Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:53.1592003Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000141-0000000000000282-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "66e4e48a-9c90-4b9a-a2e1-57aa9ba159a4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ddcee15-1430-4849-8d16-4a2a180918d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:58Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:52.3956598Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:53.1592003Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:58.4539536Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10d0cd1d-140f-4c06-a3a0-3dc7eb973454?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000142-0000000000000284-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "90a6126a-873a-4700-9f51-dadd0691c90a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b016d8a0-bcd9-46a6-8342-fcbc3b555dc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": { + "jobId": "10d0cd1d-140f-4c06-a3a0-3dc7eb973454", + "lastUpdateDateTime": "2022-02-18T19:11:58Z", + "createdDateTime": "2022-02-18T19:11:50Z", + "expirationDateTime": "2022-02-19T19:11:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:52.3956598Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:53.1592003Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:58.4539536Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json index ce4b60f5e876..3de908be575b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json @@ -1,25 +1,70 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Document text is empty.\"}}}", - "responseHeaders": { - "apim-request-id": "0660fecd-c080-453a-98d3-98ced974ea17", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f9f441a825a1fe550fcd21e25757994a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "186", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000128-0000000000000256-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8b319320-1940-463b-9a88-bfd3bc1b2323", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "2c408e5a-0a62-46a8-ad15-347fbb54b25a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Document text is empty." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json index e398217ab769..76e15f794702 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json @@ -1,25 +1,75 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}},{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"InvalidTask in AnalyzeInput\",\"innererror\":{\"code\":\"InvalidRequestBodyFormat\",\"message\":\"Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name\"}}}", - "responseHeaders": { - "apim-request-id": "745c4a58-ca4a-443a-bacc-e1d5c0cc7463", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:06:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b622bb90bc1506f299109d6581856a55" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "268", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000225-0000000000000450-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "99f33333-d1ea-4a50-9132-0394f1b13aaf", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "8efc7142-e6c8-467a-bb56-8c2e2d31edb9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "InvalidTask in AnalyzeInput", + "innererror": { + "code": "InvalidRequestBodyFormat", + "message": "Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json index f04341c1b132..6567893ac318 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json @@ -1,177 +1,931 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "867ea8f1-2b8d-4832-a8e3-f0ba123e83a6", - "date": "Sat, 23 Oct 2021 00:53:39 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "335" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:39Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "4b8d3c5a-0488-4ef8-8d9f-ed2fb629013d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:39Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "bab9c89d-7a74-4434-adb1-8439b1f156e7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:41Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:41.5202454Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "778a2cb1-10ed-4328-8f51-b80f9ad77f45", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:41Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:41.5202454Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "4ee92e33-02f8-4f4c-a114-ae508f29f7da", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:41Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:41.5202454Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "5eda4b88-81ea-46df-a7f1-2b2ef19477a0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:46Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:41.5202454Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:46.9640902Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "338910a9-0a6f-4f98-b76b-975c41b93f4c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "224" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:48Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:41.5202454Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:46.9640902Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:48.5170456Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "4612628c-b727-4a2d-965e-c700229fbeb2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "421" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6516f582-cd4b-41ff-81c6-55c0da19fcd4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6516f582-cd4b-41ff-81c6-55c0da19fcd4\",\"lastUpdateDateTime\":\"2021-10-23T00:53:48Z\",\"createdDateTime\":\"2021-10-23T00:53:39Z\",\"expirationDateTime\":\"2021-10-24T00:53:39Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:41.5202454Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:46.9640902Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:48.5170456Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "6b353c43-2c66-4b33-82e6-357376e0c185", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "209" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e1bf903c26b110c408cc16efec7b6dba" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "510", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000169-0000000000000338-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "66700cb5-bed4-48b0-8527-77cee9b0bb51", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c519d53b-469f-4d5d-9ac6-0b3ebf1eb2f7", + "Date": "Fri, 18 Feb 2022 19:12:30 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "218" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000170-0000000000000340-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "eb2c9f50-c37d-4867-a71f-091f4419fd5a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3639663-4e57-44fa-8a0d-cac58fa21f4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:30Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000171-0000000000000342-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "57a6cdb1-88f5-45d1-be64-b3cbe6b801f0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3e88552-96a6-444d-8de3-534b0c61e71c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:30Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000172-0000000000000344-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "01aa7b70-23a9-4b23-a02a-83985b34dc6f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e4cb4d38-4ee0-41cb-a096-b8d3caed5365", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:32Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:32.2562629Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000173-0000000000000346-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cd597814-05e8-4ac5-9d84-b6620bd8e24f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3b079a8-48ba-4f68-884b-a02687f21acd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "82" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:32Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:32.2562629Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000174-0000000000000348-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4aebc712-afeb-4923-9477-e4a1a563efc2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "80945d02-9500-47f7-ac7e-be1a502244f3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:32Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:32.2562629Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000175-0000000000000350-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "59787549-fb58-4546-91aa-efc0a0f00f78", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b5103ba-43b0-4f9b-bb44-784ad2ac7c4e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:38Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:32.2562629Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:38.4074565Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000176-0000000000000352-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "296670e1-b5dd-401c-84b8-91a27c0cb0b7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b378f4bb-79d7-4937-8971-2856a429ff10", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:39Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:32.2562629Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:38.4074565Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:39.6178927Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/785a446b-9e5d-4529-8f87-6a41f0dedfc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000177-0000000000000354-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a9e385c1-fe34-49dc-9efb-c97067dfcd10", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e408b299-b274-40aa-8dfd-680eec50f932", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "577" + }, + "ResponseBody": { + "jobId": "785a446b-9e5d-4529-8f87-6a41f0dedfc2", + "lastUpdateDateTime": "2022-02-18T19:12:39Z", + "createdDateTime": "2022-02-18T19:12:30Z", + "expirationDateTime": "2022-02-19T19:12:30Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:32.2562629Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:38.4074565Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:39.6178927Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json index 203a3a49b211..7c0de1f5f589 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json @@ -1,101 +1,442 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"UnicodeCodePoint\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "38c0fb7d-24ea-49d3-9d0f-1a7d91ba6130", - "date": "Sat, 23 Oct 2021 00:54:47 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/88ca2fe8-9b45-49fb-95de-bafb839c1f14", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/88ca2fe8-9b45-49fb-95de-bafb839c1f14", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88ca2fe8-9b45-49fb-95de-bafb839c1f14\",\"lastUpdateDateTime\":\"2021-10-23T00:54:48Z\",\"createdDateTime\":\"2021-10-23T00:54:48Z\",\"expirationDateTime\":\"2021-10-24T00:54:48Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "ffdd0505-a8be-4ce8-8957-f7401ef13db0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/88ca2fe8-9b45-49fb-95de-bafb839c1f14", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88ca2fe8-9b45-49fb-95de-bafb839c1f14\",\"lastUpdateDateTime\":\"2021-10-23T00:54:48Z\",\"createdDateTime\":\"2021-10-23T00:54:48Z\",\"expirationDateTime\":\"2021-10-24T00:54:48Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "fce72c1d-93c6-4b54-8549-244509f51f1a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/88ca2fe8-9b45-49fb-95de-bafb839c1f14", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88ca2fe8-9b45-49fb-95de-bafb839c1f14\",\"lastUpdateDateTime\":\"2021-10-23T00:54:49Z\",\"createdDateTime\":\"2021-10-23T00:54:48Z\",\"expirationDateTime\":\"2021-10-24T00:54:48Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:49.7910659Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "6b6ec4e7-8260-407b-933f-4e1b1977eb1b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/88ca2fe8-9b45-49fb-95de-bafb839c1f14", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88ca2fe8-9b45-49fb-95de-bafb839c1f14\",\"lastUpdateDateTime\":\"2021-10-23T00:54:49Z\",\"createdDateTime\":\"2021-10-23T00:54:48Z\",\"expirationDateTime\":\"2021-10-24T00:54:48Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:49.7910659Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "3856c7fa-5bd8-4a54-aa10-28e7e057a07a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:49 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "425e31a777619d837f737b23058c4474" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "247", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000216-0000000000000432-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6e193f03-987c-4a87-9458-74b0fe046e72", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e81b8ab0-e8bf-4d9c-8bc5-caa4ced79a13", + "Date": "Fri, 18 Feb 2022 19:13:27 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000217-0000000000000434-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "90288ee8-1b2e-46bf-b816-eab5ffe96032", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "86d1ca4f-7a9b-484b-8756-e3b67d3777fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:27Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000218-0000000000000436-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ff55002d-a9a8-4287-a9b3-d51527d25961", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8498849f-2b2e-4446-a7b9-6da60f10120c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:27Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000219-0000000000000438-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6dd84616-9164-47bc-8707-a1c66a639146", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9e087bf-2b7f-4da2-888e-c6c7d665d917", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:27Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000220-0000000000000440-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2eb4b158-e7b5-4643-a8b7-82b4fd69d2b2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "937629f6-76dc-44eb-a781-d22493000402", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:27Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000221-0000000000000442-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "13af1339-4e90-4731-9ace-53f870518d1e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9122cad0-85cc-46b7-a52b-d9d30e2e9625", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:27Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000222-0000000000000444-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e2f59969-6fb0-43a7-96fe-c4388b250209", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b5972ba-ccee-408a-8f7f-7542d561020f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:34Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:34.0250164Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/91be2ba8-97b4-44be-8e63-76d44edeed19?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000223-0000000000000446-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3ca00aff-409a-4036-b394-d968c13bff25", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cdcd3c40-c07a-4ef0-a378-d2ce2bbd2a9b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" + }, + "ResponseBody": { + "jobId": "91be2ba8-97b4-44be-8e63-76d44edeed19", + "lastUpdateDateTime": "2022-02-18T19:13:34Z", + "createdDateTime": "2022-02-18T19:13:27Z", + "expirationDateTime": "2022-02-19T19:13:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:34.0250164Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json index 802710b57bc3..d7db5c00080a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json @@ -1,215 +1,402 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "0dd69a2f-e5bb-4498-a324-4e3fbb5b1e1b", - "date": "Sat, 23 Oct 2021 00:54:00 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "435" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:01Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "549e1df7-a891-46ff-82ab-af705a669740", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:01Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "0d088636-ef38-41f2-ad14-2eb049096c24", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:02Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "1423433d-8841-46d1-a988-5db569e8eaa2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "221" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:02Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "ae0c0f2d-2ac0-46cb-bb95-664ae146e166", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "119" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:07Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "4d6bed1e-1ca4-4aa9-be0b-4f2daa8ca641", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:07Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "6191d575-5890-4c92-911d-7171d6336d9b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "253" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:07Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "2a85080c-189a-45f5-9b0c-a055bf9f1956", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "150" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:07Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "30522144-c15f-4694-8134-5b82ea2b67cd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:14Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:14.7657819Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "39adbec2-f461-450f-ac8a-7f4907c0c604", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "153" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b9eca8b-423f-48b3-b7b2-9463851e1f24", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b9eca8b-423f-48b3-b7b2-9463851e1f24\",\"lastUpdateDateTime\":\"2021-10-23T00:54:14Z\",\"createdDateTime\":\"2021-10-23T00:54:00Z\",\"expirationDateTime\":\"2021-10-24T00:54:00Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8836301Z\",\"state\":\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:02.8937291Z\",\"state\":\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:14.7657819Z\",\"state\":\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "35f5e4af-fdb0-492b-8904-8ae5e87332c3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "208" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "55a9332c301d4649020961749a1eefec" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "436", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000189-0000000000000378-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9640444f-68b1-4b9f-87d6-dd48806b68e7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "124326b7-1474-4dfc-b926-604e6de323d8", + "Date": "Fri, 18 Feb 2022 19:12:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/397b3093-d9e5-445b-8681-86458b80e92c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/397b3093-d9e5-445b-8681-86458b80e92c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000190-0000000000000380-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a37f6db4-83b0-4618-83fd-a45cafd301e7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c52e3bfe-da36-4e6f-bfcf-3f54d077ed77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "397b3093-d9e5-445b-8681-86458b80e92c", + "lastUpdateDateTime": "2022-02-18T19:13:00Z", + "createdDateTime": "2022-02-18T19:12:59Z", + "expirationDateTime": "2022-02-19T19:12:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/397b3093-d9e5-445b-8681-86458b80e92c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000191-0000000000000382-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "26ec3197-682f-4a3d-b97c-1258a61e98dc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9bd51842-521a-4f34-adf2-ca899120cac8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "jobId": "397b3093-d9e5-445b-8681-86458b80e92c", + "lastUpdateDateTime": "2022-02-18T19:13:00Z", + "createdDateTime": "2022-02-18T19:12:59Z", + "expirationDateTime": "2022-02-19T19:12:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/397b3093-d9e5-445b-8681-86458b80e92c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000192-0000000000000384-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "71bb95c4-660a-485c-8969-713574d6dbca", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "67574522-062b-4c8f-a98b-39580998e84f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "106" + }, + "ResponseBody": { + "jobId": "397b3093-d9e5-445b-8681-86458b80e92c", + "lastUpdateDateTime": "2022-02-18T19:13:01Z", + "createdDateTime": "2022-02-18T19:12:59Z", + "expirationDateTime": "2022-02-19T19:12:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:01.521691Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:01.4605975Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:01.6527263Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/397b3093-d9e5-445b-8681-86458b80e92c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000193-0000000000000386-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "710929d2-ffbd-45b2-ac8a-b3abcb474c28", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85c150f1-83cf-4185-9f79-cff15ed845f8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "jobId": "397b3093-d9e5-445b-8681-86458b80e92c", + "lastUpdateDateTime": "2022-02-18T19:13:01Z", + "createdDateTime": "2022-02-18T19:12:59Z", + "expirationDateTime": "2022-02-19T19:12:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:01.521691Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:01.4605975Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:01.6527263Z", + "state": "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json index 91883507cd4f..124ddbbaa0fa 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json @@ -1,25 +1,69 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"bad\",\"stringIndexType\":\"TextElement_v8\"}}]}}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15.\"}}}", - "responseHeaders": { - "apim-request-id": "af9d2132-5d7c-4a70-84ef-7affd81b976a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "35683911136f1ebaf864ca74c3f0b597" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "190", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000224-0000000000000448-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e443f5b9-5ca0-4592-a7b4-59027fce776a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "bad", + "stringIndexType": "TextElement_v8" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "f51511f2-881c-48f9-9ef9-84d15b0f0ee2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json deleted file mode 100644 index ddbcfe4d7dbe..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "recordings": [], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "64c8206f4b6d3882233f0ebe745aea90" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json index 0965cac2daaa..14271442820f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json @@ -1,139 +1,286 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"displayName\":\"testJob\",\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "c1d85b54-52dd-4dc5-abc4-eecac190d404", - "date": "Sat, 23 Oct 2021 00:54:39 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "243" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d016de13-4d11-4e99-b127-c7d71d8d7562\",\"lastUpdateDateTime\":\"2021-10-23T00:54:39Z\",\"createdDateTime\":\"2021-10-23T00:54:39Z\",\"expirationDateTime\":\"2021-10-24T00:54:39Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "44c19612-29f0-4e07-b5d7-83a93e71d5d4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d016de13-4d11-4e99-b127-c7d71d8d7562\",\"lastUpdateDateTime\":\"2021-10-23T00:54:39Z\",\"createdDateTime\":\"2021-10-23T00:54:39Z\",\"expirationDateTime\":\"2021-10-24T00:54:39Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "81af9a5b-b5a3-48c2-b648-342cca7cea44", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d016de13-4d11-4e99-b127-c7d71d8d7562\",\"lastUpdateDateTime\":\"2021-10-23T00:54:39Z\",\"createdDateTime\":\"2021-10-23T00:54:39Z\",\"expirationDateTime\":\"2021-10-24T00:54:39Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "1b530c56-9024-47cc-8855-8a83a369e97b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d016de13-4d11-4e99-b127-c7d71d8d7562\",\"lastUpdateDateTime\":\"2021-10-23T00:54:39Z\",\"createdDateTime\":\"2021-10-23T00:54:39Z\",\"expirationDateTime\":\"2021-10-24T00:54:39Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "a0895941-48b7-4a04-aef8-050565c87367", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d016de13-4d11-4e99-b127-c7d71d8d7562\",\"lastUpdateDateTime\":\"2021-10-23T00:54:39Z\",\"createdDateTime\":\"2021-10-23T00:54:39Z\",\"expirationDateTime\":\"2021-10-24T00:54:39Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "b36ac0c8-0899-4677-907b-850ab9e9e220", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d016de13-4d11-4e99-b127-c7d71d8d7562", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d016de13-4d11-4e99-b127-c7d71d8d7562\",\"lastUpdateDateTime\":\"2021-10-23T00:54:47Z\",\"createdDateTime\":\"2021-10-23T00:54:39Z\",\"expirationDateTime\":\"2021-10-24T00:54:39Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:47.3033062Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "9e3bf069-c025-492e-8289-890e039a1a1b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f1824e388e5e072cfa6552fb3e25e68c" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "236fa80d-8638-4d66-9afb-d0a025d7211a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "displayName": "testJob", + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "20b97394-64ce-430e-af85-af98bd015f0d", + "Date": "Fri, 18 Feb 2022 19:38:42 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/82169336-2250-40e6-8358-4a7538a96e12", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "179" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/82169336-2250-40e6-8358-4a7538a96e12?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ece06a23-7915-4d02-9014-22066a73af49", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6cdffd37-82ba-4fad-bce8-fcc1aab3d3a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "82169336-2250-40e6-8358-4a7538a96e12", + "lastUpdateDateTime": "2022-02-18T19:38:43Z", + "createdDateTime": "2022-02-18T19:38:43Z", + "expirationDateTime": "2022-02-19T19:38:43Z", + "status": "notStarted", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/82169336-2250-40e6-8358-4a7538a96e12?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "da8a666c-0917-415e-ba02-a870767b1957", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2a83e47-f763-4b49-82ba-f52570b9b5db", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "82169336-2250-40e6-8358-4a7538a96e12", + "lastUpdateDateTime": "2022-02-18T19:38:43Z", + "createdDateTime": "2022-02-18T19:38:43Z", + "expirationDateTime": "2022-02-19T19:38:43Z", + "status": "notStarted", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/82169336-2250-40e6-8358-4a7538a96e12?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0086bc6e-7813-4518-8f44-f0ba7b1262a4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "078d117c-d6bb-4f75-b0b7-3420a2d6fa70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "jobId": "82169336-2250-40e6-8358-4a7538a96e12", + "lastUpdateDateTime": "2022-02-18T19:38:43Z", + "createdDateTime": "2022-02-18T19:38:43Z", + "expirationDateTime": "2022-02-19T19:38:43Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/82169336-2250-40e6-8358-4a7538a96e12?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "09271dfb-2010-4ccd-831c-6380f779b9c9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ecb71f53-faaf-4712-bcff-2d56f499718a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "82169336-2250-40e6-8358-4a7538a96e12", + "lastUpdateDateTime": "2022-02-18T19:38:46Z", + "createdDateTime": "2022-02-18T19:38:43Z", + "expirationDateTime": "2022-02-19T19:38:43Z", + "status": "succeeded", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:38:46.7349086Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json index 53b044980391..1b267e463ec4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json @@ -1,177 +1,595 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"w\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "aad982a1-8857-4a96-9170-fd02bab3be17", - "date": "Sat, 23 Oct 2021 00:52:58 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "394" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:52:59Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "39a0e05e-698f-46d8-9a98-1ce6676cb973", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:52:59Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "4f836af5-e10c-4634-8b48-e2484559dccc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:52:59Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "336667e5-4e6b-40cc-990c-16f0264b4981", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:53:02Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:02.1791977Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "c94dbafb-9091-4ea8-be19-05ef2b51ed64", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:53:05Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:02.1791977Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "130847cc-cb33-412c-b9a9-ea428695329c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:53:06Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:06.8755589Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:02.1791977Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "8593222b-995c-493b-9f08-4da661f656bc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "416" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:53:09Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:06.8755589Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:02.1791977Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:09.2055245Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "ad7356af-ddb7-436a-aee7-dc5d9f689ee8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "255" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a8017c7-e23e-421d-898c-a13db0d1e886", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9a8017c7-e23e-421d-898c-a13db0d1e886\",\"lastUpdateDateTime\":\"2021-10-23T00:53:09Z\",\"createdDateTime\":\"2021-10-23T00:52:58Z\",\"expirationDateTime\":\"2021-10-24T00:52:58Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:06.8755589Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:02.1791977Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:09.2055245Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "d977844a-a749-4243-a575-541dfc7a7dc5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "282" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "84b42092dc8ed307528865ff9b444fa7" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "440", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000149-0000000000000298-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "93d7cf3e-29ff-41d2-870c-a7ecd9a911c1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "w" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0db23e87-7b14-40b0-bf21-02dcf9731ed5", + "Date": "Fri, 18 Feb 2022 19:12:08 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f0cc4b45-c679-4896-8ba9-56d1471d01e6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "316" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f0cc4b45-c679-4896-8ba9-56d1471d01e6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000150-0000000000000300-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d1baac69-bc9a-4de2-9c5e-2c7891a911cd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24f34b91-93a8-4a42-907c-89bbac1a3f66", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "f0cc4b45-c679-4896-8ba9-56d1471d01e6", + "lastUpdateDateTime": "2022-02-18T19:12:08Z", + "createdDateTime": "2022-02-18T19:12:07Z", + "expirationDateTime": "2022-02-19T19:12:07Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f0cc4b45-c679-4896-8ba9-56d1471d01e6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000151-0000000000000302-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3de1ddef-3053-4e0a-bffd-63df14fc6902", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52ff1b4c-6f8b-4458-aac7-4afd406d18d4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "f0cc4b45-c679-4896-8ba9-56d1471d01e6", + "lastUpdateDateTime": "2022-02-18T19:12:08Z", + "createdDateTime": "2022-02-18T19:12:07Z", + "expirationDateTime": "2022-02-19T19:12:07Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f0cc4b45-c679-4896-8ba9-56d1471d01e6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000152-0000000000000304-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c093fd54-8679-4859-b17d-913e5cfc2560", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "86d2618e-d942-44d2-b087-0d2f4d13d2c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "jobId": "f0cc4b45-c679-4896-8ba9-56d1471d01e6", + "lastUpdateDateTime": "2022-02-18T19:12:10Z", + "createdDateTime": "2022-02-18T19:12:07Z", + "expirationDateTime": "2022-02-19T19:12:07Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:10.1654652Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f0cc4b45-c679-4896-8ba9-56d1471d01e6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000153-0000000000000306-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7ce88b32-c7c3-4fe4-9e5a-8d3b7ddd947b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4514b601-78fb-428e-a1fa-2a37cee1fcef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "221" + }, + "ResponseBody": { + "jobId": "f0cc4b45-c679-4896-8ba9-56d1471d01e6", + "lastUpdateDateTime": "2022-02-18T19:12:11Z", + "createdDateTime": "2022-02-18T19:12:07Z", + "expirationDateTime": "2022-02-19T19:12:07Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:10.1654652Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:11.1836378Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:11.630154Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f0cc4b45-c679-4896-8ba9-56d1471d01e6?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000154-0000000000000308-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4272b847-a8fa-4df7-ba45-435dc28dfb08", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3a266194-b067-469d-a6dd-dd276d3e4862", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "241" + }, + "ResponseBody": { + "jobId": "f0cc4b45-c679-4896-8ba9-56d1471d01e6", + "lastUpdateDateTime": "2022-02-18T19:12:11Z", + "createdDateTime": "2022-02-18T19:12:07Z", + "expirationDateTime": "2022-02-19T19:12:07Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:10.1654652Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:11.1836378Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:11.630154Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json index a5cd4c518e70..ec469e24057a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json @@ -1,177 +1,772 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "85b901ff-186a-457a-a0ec-65c251da5bc4", - "date": "Sat, 23 Oct 2021 00:52:46 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "481" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:47Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "614f137e-1e73-46e3-b2e0-21d89031f45c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:47Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "666df90f-24b9-4f6d-a32c-9b46579fccb7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:49Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "f02ef5b8-d689-4a72-8795-33833da3d2d9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:49Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:49.2448748Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "d906f810-17ee-4d06-a506-bfb7f6416b0e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:49Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:49.2448748Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "1c69ee8e-0746-4adb-8659-099acbf67842", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:54Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:54.9431616Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:49.2448748Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "0dc47aed-598c-40d5-b385-299809017643", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "185" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:56Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:54.9431616Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:49.2448748Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:56.3287482Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "45e33952-e6ee-4c27-8ad7-35aa8c003145", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "271" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7a36b18a-6b1b-4b83-90b3-09b8e51cb8e1\",\"lastUpdateDateTime\":\"2021-10-23T00:52:56Z\",\"createdDateTime\":\"2021-10-23T00:52:46Z\",\"expirationDateTime\":\"2021-10-24T00:52:46Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:54.9431616Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:49.2448748Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:56.3287482Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "e6ec2699-623d-4c63-9503-517c53549caf", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "274" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5dc913127fdc043848daa5f60c21d6db" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "447", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000143-0000000000000286-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fd228710-653c-4766-9381-20ccfb7fcc18", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6b649203-deaf-4c71-9c99-c4067415588a", + "Date": "Fri, 18 Feb 2022 19:12:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ef18d07-0773-499b-b76b-11eb9039ce6e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "260" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ef18d07-0773-499b-b76b-11eb9039ce6e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000144-0000000000000288-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0a84c265-e8f4-4660-93fa-9af60094ff8c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d2637a43-9dde-4418-b6f1-d7ccb73f7ab8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "9ef18d07-0773-499b-b76b-11eb9039ce6e", + "lastUpdateDateTime": "2022-02-18T19:12:01Z", + "createdDateTime": "2022-02-18T19:12:00Z", + "expirationDateTime": "2022-02-19T19:12:00Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ef18d07-0773-499b-b76b-11eb9039ce6e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000145-0000000000000290-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7e54888d-5838-429a-84cc-23f4ec980f21", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f784636-8c42-405a-9bd3-05f80567453c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "9ef18d07-0773-499b-b76b-11eb9039ce6e", + "lastUpdateDateTime": "2022-02-18T19:12:01Z", + "createdDateTime": "2022-02-18T19:12:00Z", + "expirationDateTime": "2022-02-19T19:12:00Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ef18d07-0773-499b-b76b-11eb9039ce6e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000146-0000000000000292-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bafd7c2c-cb3f-4ba8-bd70-28523a41eb9d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5802ba16-8f5d-441e-b795-7d85af32c92d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" + }, + "ResponseBody": { + "jobId": "9ef18d07-0773-499b-b76b-11eb9039ce6e", + "lastUpdateDateTime": "2022-02-18T19:12:03Z", + "createdDateTime": "2022-02-18T19:12:00Z", + "expirationDateTime": "2022-02-19T19:12:00Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.0408085Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.0218451Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ef18d07-0773-499b-b76b-11eb9039ce6e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000147-0000000000000294-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "123e80e4-88f6-445b-8833-8c6856cd271a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6fa8fe95-0550-4513-820e-1384a4d6ebc6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "jobId": "9ef18d07-0773-499b-b76b-11eb9039ce6e", + "lastUpdateDateTime": "2022-02-18T19:12:03Z", + "createdDateTime": "2022-02-18T19:12:00Z", + "expirationDateTime": "2022-02-19T19:12:00Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.0408085Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.0218451Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.4616211Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ef18d07-0773-499b-b76b-11eb9039ce6e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000148-0000000000000296-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e587be3c-a153-4fd2-95de-2227d48a3b25", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "901c3e7d-af67-40db-84bd-fee8d2834a30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1367" + }, + "ResponseBody": { + "jobId": "9ef18d07-0773-499b-b76b-11eb9039ce6e", + "lastUpdateDateTime": "2022-02-18T19:12:03Z", + "createdDateTime": "2022-02-18T19:12:00Z", + "expirationDateTime": "2022-02-19T19:12:00Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.0408085Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.0218451Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:03.4616211Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json index 54eb782cc261..cc5a2bad646d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json @@ -1,217 +1,1368 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "bb48a7e1-e134-4197-84e2-5068941da3f4", - "date": "Sat, 23 Oct 2021 00:54:18 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "996" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:18Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "28dbb445-2238-456c-9588-ddf4b2815333", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:18Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "796ecc60-12fa-4c4c-82c5-a53809778d05", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:18Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "5e78c057-2aa0-4026-8060-1df11d8dbd2a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:18Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "2a5e39b5-35db-492e-9416-be4ad8dbc082", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:24Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "b6968140-0506-427a-ae19-a50e08c5918b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:25Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:25.9279167Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb?$skip=20&$top=5&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "63ad085b-f744-4fa9-a711-9a2822a6c480", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "484" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:28Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:28.4909851Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:25.9279167Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb?$skip=20&$top=5&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "63a54490-3a02-4235-b282-206dc9dab541", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "469" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$top": "10", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:28Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:28.4909851Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:25.9279167Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb?$skip=10&$top=10&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "be050fcd-3320-484b-b5e8-17f65b08ba42", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "356" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$skip": "10", - "$top": "10", - "showStats": "False" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:28Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:28.4909851Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:25.9279167Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb?$skip=20&$top=5&showStats=False\"}", - "responseHeaders": { - "apim-request-id": "4e0b5bb3-acce-451d-b747-a730204bd54e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "291" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5398aceb-c815-483c-82c0-154d5be607bb", - "query": { - "$skip": "20", - "$top": "5", - "showStats": "False" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5398aceb-c815-483c-82c0-154d5be607bb\",\"lastUpdateDateTime\":\"2021-10-23T00:54:28Z\",\"createdDateTime\":\"2021-10-23T00:54:17Z\",\"expirationDateTime\":\"2021-10-24T00:54:17Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:28.4909851Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"entities\":[],\"warnings\":[]},{\"id\":\"21\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"23\",\"entities\":[],\"warnings\":[]},{\"id\":\"24\",\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:25.9279167Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"21\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"23\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"24\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "aa09499b-c6ad-4f69-a6b7-d467fda0d5c6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "215" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "30b03dcad6187befc593b2ce7185c84e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "1471", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000194-0000000000000388-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b55c2503-e436-4cc9-8b14-a9320f64dbb4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + }, + { + "id": "11", + "text": "random text", + "language": "en" + }, + { + "id": "12", + "text": "random text", + "language": "en" + }, + { + "id": "13", + "text": "random text", + "language": "en" + }, + { + "id": "14", + "text": "random text", + "language": "en" + }, + { + "id": "15", + "text": "random text", + "language": "en" + }, + { + "id": "16", + "text": "random text", + "language": "en" + }, + { + "id": "17", + "text": "random text", + "language": "en" + }, + { + "id": "18", + "text": "random text", + "language": "en" + }, + { + "id": "19", + "text": "random text", + "language": "en" + }, + { + "id": "20", + "text": "random text", + "language": "en" + }, + { + "id": "21", + "text": "random text", + "language": "en" + }, + { + "id": "22", + "text": "random text", + "language": "en" + }, + { + "id": "23", + "text": "random text", + "language": "en" + }, + { + "id": "24", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "882cfe9f-00ea-4185-854a-0a0f5f69046a", + "Date": "Fri, 18 Feb 2022 19:13:03 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "720" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000195-0000000000000390-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "95803d50-2c7e-459a-80e9-0da4aa7a9b87", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e96c1279-fa89-4160-8983-66766e7d321f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:03Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000196-0000000000000392-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "eafd92dc-937f-4bcc-9607-19efbeb952db", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "62a7e17c-486d-4190-b1a0-edc39225c73c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:03Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000197-0000000000000394-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "be524102-2430-4671-99d8-93eee1807fea", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "531c0e0c-824a-4e7c-a706-949d0bdca3e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:04Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000198-0000000000000396-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f22d4123-2a88-4088-b047-5bba5a9a909f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c47dc506-286a-4029-9799-6d80bcd91ff0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:04Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000199-0000000000000398-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "10e3b0af-9a54-495a-8084-dca200d9e26a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e96d0295-c320-4005-8813-d468096999aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:08Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000200-0000000000000400-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e1fc6d13-02f6-4fac-8cde-5d5efa98df9c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "05bf6f41-3159-46e9-ba50-0d145eeb16db", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:08Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000201-0000000000000402-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "75be24da-0bd7-4183-a9db-b8cf5eb4b7b1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc357924-de11-4ed1-99d5-18f92d2c0744", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:14Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000202-0000000000000404-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "20471882-3adf-4bea-ba62-7ac2a3b47603", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03b22e4f-9cd0-4ce2-b6b7-987ef344a346", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "529" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:15Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:14.7302198Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + }, + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:15.8695041Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$top=10\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000203-0000000000000406-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e8cd5a01-6c81-4945-a5d9-07f584225c0f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9a5a490-64af-4b85-bc30-eccea83479c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "245" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:15Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:14.7302198Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:15.8695041Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$skip=10\u0026$top=10\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$skip=10\u0026$top=10\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000204-0000000000000408-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0ff5d63c-b560-48fb-b351-69756ae3e7b3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d634eb0-1268-4118-8fb9-2bc6c10f0447", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "338" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:15Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:14.7302198Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:15.8695041Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00565be5-a295-44b3-97b8-cc718c92c2f4?$skip=20\u0026$top=5\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000205-0000000000000410-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0e8954eb-6e5e-4b40-96e4-3bf4beb2fbc5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "072b921c-17aa-4a03-a816-2f5449b5133b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "153" + }, + "ResponseBody": { + "jobId": "00565be5-a295-44b3-97b8-cc718c92c2f4", + "lastUpdateDateTime": "2022-02-18T19:13:15Z", + "createdDateTime": "2022-02-18T19:13:03Z", + "expirationDateTime": "2022-02-19T19:13:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:14.7302198Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "entities": [], + "warnings": [] + }, + { + "id": "21", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "23", + "entities": [], + "warnings": [] + }, + { + "id": "24", + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:15.8695041Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "21", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "23", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "24", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json index 6458a19074f8..969e0e44ab02 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json @@ -1,158 +1,316 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "fc97ff9f-20fb-4469-8e8b-9862b3429869", - "date": "Sat, 23 Oct 2021 00:54:29 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "190" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:30Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "43a79d5f-158f-4828-9e6b-c20d0e7e825b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:30Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "397f38e1-5fa0-4790-ad89-e398d37c0d2d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:30Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "cff5c038-ebe3-4ec7-9308-09b83b6f09d7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:30Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "2e9ae608-0a3a-485e-8e52-f7ff800f8e7c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:30Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "0240de57-f685-44e6-99de-6e1178efae37", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:38Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:38.0469852Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "ac373065-9e9a-42cd-abb7-8d8e1b59e255", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b8dfb198-08d7-4b4e-9470-46529a4b51d0", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8dfb198-08d7-4b4e-9470-46529a4b51d0\",\"lastUpdateDateTime\":\"2021-10-23T00:54:38Z\",\"createdDateTime\":\"2021-10-23T00:54:30Z\",\"expirationDateTime\":\"2021-10-24T00:54:30Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:54:38.0469852Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "10998da2-6ed9-409a-b99c-8a980e8f0571", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cba43b39f6724507a184833865c62707" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "286", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000206-0000000000000412-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "59ffc848-7880-4d16-aae8-ace5e74e56b7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e7a3024f-305a-4cef-8fac-669d521e91da", + "Date": "Fri, 18 Feb 2022 19:13:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b7b19837-301d-4188-9724-cdf92079c292", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b7b19837-301d-4188-9724-cdf92079c292?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000207-0000000000000414-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4a2aa81f-36d0-460d-9c2c-53fc828c23c3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "37a85d10-22e7-43cc-bf5e-03f3b6d242f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "b7b19837-301d-4188-9724-cdf92079c292", + "lastUpdateDateTime": "2022-02-18T19:13:18Z", + "createdDateTime": "2022-02-18T19:13:18Z", + "expirationDateTime": "2022-02-19T19:13:18Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b7b19837-301d-4188-9724-cdf92079c292?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000208-0000000000000416-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c27b7688-cfd3-454d-a01b-c10ecf6fb5f2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ab195ad-c626-47b9-91b1-e4025e9ecc77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "b7b19837-301d-4188-9724-cdf92079c292", + "lastUpdateDateTime": "2022-02-18T19:13:18Z", + "createdDateTime": "2022-02-18T19:13:18Z", + "expirationDateTime": "2022-02-19T19:13:18Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b7b19837-301d-4188-9724-cdf92079c292?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000209-0000000000000418-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7fb32462-d256-41c1-8040-d8b19b3c228b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "018e8caf-a577-4dc1-a666-96da1a1383d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "b7b19837-301d-4188-9724-cdf92079c292", + "lastUpdateDateTime": "2022-02-18T19:13:20Z", + "createdDateTime": "2022-02-18T19:13:18Z", + "expirationDateTime": "2022-02-19T19:13:18Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:20.7764017Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b7b19837-301d-4188-9724-cdf92079c292?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000210-0000000000000420-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7c627e1a-194c-4447-a402-38ad48db820b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6a53886-17f3-41c5-aa24-145b00391092", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "b7b19837-301d-4188-9724-cdf92079c292", + "lastUpdateDateTime": "2022-02-18T19:13:20Z", + "createdDateTime": "2022-02-18T19:13:18Z", + "expirationDateTime": "2022-02-19T19:13:18Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:20.7764017Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json index 790f39200564..7aa0bc4218ea 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json @@ -1,120 +1,280 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"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.\",\"language\":\"en\"}]},\"tasks\":{\"customMultiClassificationTasks\":[{\"parameters\":{\"project-name\":\"project_name\",\"deployment-name\":\"deployment_name\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "23bf57c3-cf23-46f7-af68-0d4f987ae819", - "date": "Sat, 23 Oct 2021 00:50:21 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8abc9d28-d469-4a97-8919-7510668e3752", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "475" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8abc9d28-d469-4a97-8919-7510668e3752", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8abc9d28-d469-4a97-8919-7510668e3752\",\"lastUpdateDateTime\":\"2021-10-23T00:50:22Z\",\"createdDateTime\":\"2021-10-23T00:50:21Z\",\"expirationDateTime\":\"2021-10-24T00:50:21Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "2b3a77fe-a46b-46a7-b107-7e91fb2d52b0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8abc9d28-d469-4a97-8919-7510668e3752", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8abc9d28-d469-4a97-8919-7510668e3752\",\"lastUpdateDateTime\":\"2021-10-23T00:50:22Z\",\"createdDateTime\":\"2021-10-23T00:50:21Z\",\"expirationDateTime\":\"2021-10-24T00:50:21Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "68a15ae0-1ac8-42f7-8041-8bc534b4ed5e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8abc9d28-d469-4a97-8919-7510668e3752", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8abc9d28-d469-4a97-8919-7510668e3752\",\"lastUpdateDateTime\":\"2021-10-23T00:50:22Z\",\"createdDateTime\":\"2021-10-23T00:50:21Z\",\"expirationDateTime\":\"2021-10-24T00:50:21Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "dbad7e50-63cf-41bf-b40a-a19f9ffd83fa", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8abc9d28-d469-4a97-8919-7510668e3752", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8abc9d28-d469-4a97-8919-7510668e3752\",\"lastUpdateDateTime\":\"2021-10-23T00:50:24Z\",\"createdDateTime\":\"2021-10-23T00:50:21Z\",\"expirationDateTime\":\"2021-10-24T00:50:21Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customMultiClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:24.9168023Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classifications\":[],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "3f835845-d535-4c1e-b562-269d748aadcd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8abc9d28-d469-4a97-8919-7510668e3752", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8abc9d28-d469-4a97-8919-7510668e3752\",\"lastUpdateDateTime\":\"2021-10-23T00:50:24Z\",\"createdDateTime\":\"2021-10-23T00:50:21Z\",\"expirationDateTime\":\"2021-10-24T00:50:21Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customMultiClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:24.9168023Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classifications\":[],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "507d64c4-909a-4336-92bd-65f5764e49a7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f7018320baace5b2ccad9e798e3906eb" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "484", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1287633b-af84-4ce2-82be-9a1707c90697", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a0f03898-9726-420a-b602-8106fe8288e8", + "Date": "Fri, 18 Feb 2022 19:31:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "175" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "56776155-b737-4c87-8c34-be261e4fd703", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "911623cd-00d9-4de7-a56b-f19aad5d716b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d", + "lastUpdateDateTime": "2022-02-18T19:31:49Z", + "createdDateTime": "2022-02-18T19:31:49Z", + "expirationDateTime": "2022-02-19T19:31:49Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "34292e41-015f-492c-bf67-1d71824c267e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b0ad969a-e38f-4798-bdbc-e355ecd64cd8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d", + "lastUpdateDateTime": "2022-02-18T19:31:49Z", + "createdDateTime": "2022-02-18T19:31:49Z", + "expirationDateTime": "2022-02-19T19:31:49Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cddbcdfe-22fe-4981-93fd-7525bddcbc0c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70923b76-4475-4829-bc3e-d3f7f7e3b8ec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d", + "lastUpdateDateTime": "2022-02-18T19:31:50Z", + "createdDateTime": "2022-02-18T19:31:49Z", + "expirationDateTime": "2022-02-19T19:31:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:50.0018593Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ea715e92-8437-4c3c-9fad-91816f0d1900", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99222e21-661e-468f-b668-d261464ef400", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "500" + }, + "ResponseBody": { + "jobId": "4a5525c8-bd0d-4e6f-b3d5-2ee656511e5d", + "lastUpdateDateTime": "2022-02-18T19:31:50Z", + "createdDateTime": "2022-02-18T19:31:49Z", + "expirationDateTime": "2022-02-19T19:31:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:50.0018593Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json index c7a264a91754..8abc4de9a458 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json @@ -1,101 +1,286 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"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.\",\"language\":\"en\"}]},\"tasks\":{\"customSingleClassificationTasks\":[{\"parameters\":{\"project-name\":\"project_name\",\"deployment-name\":\"deployment_name\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "c06f7181-1e95-43ef-9829-1540c04ba097", - "date": "Sat, 23 Oct 2021 00:50:18 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/81134e80-2f1f-4fce-ac19-11cb794545b5", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "455" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/81134e80-2f1f-4fce-ac19-11cb794545b5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"81134e80-2f1f-4fce-ac19-11cb794545b5\",\"lastUpdateDateTime\":\"2021-10-23T00:50:19Z\",\"createdDateTime\":\"2021-10-23T00:50:18Z\",\"expirationDateTime\":\"2021-10-24T00:50:18Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "ffbb320e-74ca-41c7-99c5-0d65b4ff30eb", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/81134e80-2f1f-4fce-ac19-11cb794545b5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"81134e80-2f1f-4fce-ac19-11cb794545b5\",\"lastUpdateDateTime\":\"2021-10-23T00:50:19Z\",\"createdDateTime\":\"2021-10-23T00:50:18Z\",\"expirationDateTime\":\"2021-10-24T00:50:18Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "e92481de-d1ed-432e-949d-2bb568b2c7d5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/81134e80-2f1f-4fce-ac19-11cb794545b5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"81134e80-2f1f-4fce-ac19-11cb794545b5\",\"lastUpdateDateTime\":\"2021-10-23T00:50:20Z\",\"createdDateTime\":\"2021-10-23T00:50:18Z\",\"expirationDateTime\":\"2021-10-24T00:50:18Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customSingleClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:20.0438873Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classification\":{\"category\":\"RateBook\",\"confidenceScore\":0.76},\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "808aaaaf-db2c-453f-9b5e-5da734f6bd09", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/81134e80-2f1f-4fce-ac19-11cb794545b5", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"81134e80-2f1f-4fce-ac19-11cb794545b5\",\"lastUpdateDateTime\":\"2021-10-23T00:50:20Z\",\"createdDateTime\":\"2021-10-23T00:50:18Z\",\"expirationDateTime\":\"2021-10-24T00:50:18Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customSingleClassificationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:20.0438873Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"classification\":{\"category\":\"RateBook\",\"confidenceScore\":0.76},\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "9d32a1dd-e4cc-45d6-8dd6-36761143d1bd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e184c5d74e207d46fa391f79f2d76cbb" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "485", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c2cda8a6-62ad-4b45-bb5b-865384f83466", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f3adad39-6c61-44a7-9937-0bd1695e21ef", + "Date": "Fri, 18 Feb 2022 19:31:45 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c20ed88a-8fe0-4de8-b140-957b5aa9e866", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c20ed88a-8fe0-4de8-b140-957b5aa9e866?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "21f57321-c5e8-4836-b318-aaf375dbb553", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb34a7ba-b95a-4ced-a032-664e97c9f024", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c20ed88a-8fe0-4de8-b140-957b5aa9e866", + "lastUpdateDateTime": "2022-02-18T19:31:45Z", + "createdDateTime": "2022-02-18T19:31:45Z", + "expirationDateTime": "2022-02-19T19:31:45Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c20ed88a-8fe0-4de8-b140-957b5aa9e866?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9d34b5d0-1dbe-4330-b474-30490caf4de3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a98788f9-28e9-48d6-85a3-d48e7f1af2ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "c20ed88a-8fe0-4de8-b140-957b5aa9e866", + "lastUpdateDateTime": "2022-02-18T19:31:45Z", + "createdDateTime": "2022-02-18T19:31:45Z", + "expirationDateTime": "2022-02-19T19:31:45Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c20ed88a-8fe0-4de8-b140-957b5aa9e866?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d0de753d-8466-4fe7-b1bb-eb92e6a1da87", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e6228161-d99c-4fbe-9ecd-d14d88f71bec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "c20ed88a-8fe0-4de8-b140-957b5aa9e866", + "lastUpdateDateTime": "2022-02-18T19:31:46Z", + "createdDateTime": "2022-02-18T19:31:45Z", + "expirationDateTime": "2022-02-19T19:31:45Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:46.4037972Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c20ed88a-8fe0-4de8-b140-957b5aa9e866?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f0d68512-fa23-4d56-a609-85736ade169f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96598f72-8b8e-4fac-9c2a-c112659eae7c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "457" + }, + "ResponseBody": { + "jobId": "c20ed88a-8fe0-4de8-b140-957b5aa9e866", + "lastUpdateDateTime": "2022-02-18T19:31:46Z", + "createdDateTime": "2022-02-18T19:31:45Z", + "expirationDateTime": "2022-02-19T19:31:45Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:46.4037972Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json index a1f3aff98325..8f3b94d4f3f5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json @@ -1,101 +1,461 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"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.\",\"language\":\"en\"}]},\"tasks\":{\"customEntityRecognitionTasks\":[{\"parameters\":{\"project-name\":\"project_name\",\"deployment-name\":\"deployment_name\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "16543fac-9e01-4e09-8570-9b3837e0c4f7", - "date": "Sat, 23 Oct 2021 00:50:16 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8ed11eff-2986-4bf5-a9b0-d7d45756182a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "778" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8ed11eff-2986-4bf5-a9b0-d7d45756182a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ed11eff-2986-4bf5-a9b0-d7d45756182a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:16Z\",\"createdDateTime\":\"2021-10-23T00:50:16Z\",\"expirationDateTime\":\"2021-10-24T00:50:16Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "17c49461-dccd-44c9-84f4-aec3564384a9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8ed11eff-2986-4bf5-a9b0-d7d45756182a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ed11eff-2986-4bf5-a9b0-d7d45756182a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:16Z\",\"createdDateTime\":\"2021-10-23T00:50:16Z\",\"expirationDateTime\":\"2021-10-24T00:50:16Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "644a34d4-e92f-4fbb-8e0d-38c584e26c7d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8ed11eff-2986-4bf5-a9b0-d7d45756182a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ed11eff-2986-4bf5-a9b0-d7d45756182a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:17Z\",\"createdDateTime\":\"2021-10-23T00:50:16Z\",\"expirationDateTime\":\"2021-10-24T00:50:16Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customEntityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:17.6587474Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"98-0987\",\"category\":\"timeRange\",\"offset\":4,\"length\":7,\"confidenceScore\":0.55},{\"text\":\"$100\",\"category\":\"timeRange\",\"offset\":27,\"length\":4,\"confidenceScore\":0.15},{\"text\":\"John owes\",\"category\":\"artist\",\"offset\":12,\"length\":9,\"confidenceScore\":0.18},{\"text\":\"Mike\",\"category\":\"artist\",\"offset\":22,\"length\":4,\"confidenceScore\":0.35}],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "b1fceb10-f732-4705-950d-e04cc7ae9cea", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8ed11eff-2986-4bf5-a9b0-d7d45756182a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"8ed11eff-2986-4bf5-a9b0-d7d45756182a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:17Z\",\"createdDateTime\":\"2021-10-23T00:50:16Z\",\"expirationDateTime\":\"2021-10-24T00:50:16Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"customEntityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:17.6587474Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"98-0987\",\"category\":\"timeRange\",\"offset\":4,\"length\":7,\"confidenceScore\":0.55},{\"text\":\"$100\",\"category\":\"timeRange\",\"offset\":27,\"length\":4,\"confidenceScore\":0.15},{\"text\":\"John owes\",\"category\":\"artist\",\"offset\":12,\"length\":9,\"confidenceScore\":0.18},{\"text\":\"Mike\",\"category\":\"artist\",\"offset\":22,\"length\":4,\"confidenceScore\":0.35}],\"warnings\":[]}],\"errors\":[],\"projectName\":\"project_name\",\"deploymentName\":\"deployment_name\"}}]}}", - "responseHeaders": { - "apim-request-id": "19883640-1719-4701-90f6-01db6e2507ad", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "86" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "63240757f49fb6f3f2c6e3eee2dc656f" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "516", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fe00b7ea-2fea-4811-94b8-1e81dc0b88b9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ad9e10c0-4490-435b-8a16-1bb65c7e8ea4", + "Date": "Fri, 18 Feb 2022 19:31:44 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5c2f151b-4af8-4daf-9c30-c525d043a950", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "124" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5c2f151b-4af8-4daf-9c30-c525d043a950?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2f579964-0de7-4fd0-9962-8a4a231aaa7b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "654836a8-2981-4400-8187-50c4cee199b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "5c2f151b-4af8-4daf-9c30-c525d043a950", + "lastUpdateDateTime": "2022-02-18T19:31:44Z", + "createdDateTime": "2022-02-18T19:31:44Z", + "expirationDateTime": "2022-02-19T19:31:44Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5c2f151b-4af8-4daf-9c30-c525d043a950?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6714e85a-43cc-4f95-98df-7c16fafb24cb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d8f5f77-aa06-47bf-88a3-055f00871497", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "5c2f151b-4af8-4daf-9c30-c525d043a950", + "lastUpdateDateTime": "2022-02-18T19:31:44Z", + "createdDateTime": "2022-02-18T19:31:44Z", + "expirationDateTime": "2022-02-19T19:31:44Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:44.987587Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5c2f151b-4af8-4daf-9c30-c525d043a950?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "81e30afc-3f36-43b6-953d-cbe77615a4e3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "da54b82c-2db3-4970-a674-f777f7d81c5b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "5c2f151b-4af8-4daf-9c30-c525d043a950", + "lastUpdateDateTime": "2022-02-18T19:31:44Z", + "createdDateTime": "2022-02-18T19:31:44Z", + "expirationDateTime": "2022-02-19T19:31:44Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:44.987587Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json index 08a1a9e9b214..b4c39403b651 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json @@ -1,234 +1,525 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"Microsoft moved its headquarters to Bellevue, Washington in January 1979.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.\",\"language\":\"en\"}]},\"tasks\":{\"entityLinkingTasks\":[{\"parameters\":{\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "9436b5a4-d36b-482a-a17b-f76caafccb21", - "date": "Sat, 23 Oct 2021 00:51:06 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "186" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "de0cb0a5-a16f-4517-a717-2571a77f4ec7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "0aa01563-122a-4254-915b-80174163c587", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "2b4e4cc0-e8ea-4fb9-9e0e-b93fba692ef7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:08 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c34e746f-0632-4f68-9502-ad1846cc959b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "b53ad308-8f3c-499c-a30d-996b87eac01f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "39f7ec99-54d3-4729-b9f9-96ef1cc1295d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "f9be63e0-b034-41b5-8497-cb39c93d1c83", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "06c5e777-3247-4820-94a7-652a940f2d05", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:07Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "7d83afd9-8ead-4ed3-b41a-9aa5ed2ddedd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:22Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:22.2717568Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0\",\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"19fb6fb4-3c50-f314-30e4-7b5470e08274\",\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"56ff0719-4791-406b-99de-0e99c3e8cefc\",\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"cf5db860-9fd2-390d-0b6d-5ba856efed49\",\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"e23e51ed-d16f-4800-9a31-ed056168b9a2\",\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "dd229967-a263-4bf5-8e80-20dfa2289f64", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"dfc9cc4d-a6d3-40a8-b529-5aac4e2c609f\",\"lastUpdateDateTime\":\"2021-10-23T00:51:22Z\",\"createdDateTime\":\"2021-10-23T00:51:06Z\",\"expirationDateTime\":\"2021-10-24T00:51:06Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:22.2717568Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0\",\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"19fb6fb4-3c50-f314-30e4-7b5470e08274\",\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"bingId\":\"56ff0719-4791-406b-99de-0e99c3e8cefc\",\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"cf5db860-9fd2-390d-0b6d-5ba856efed49\",\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85\",\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"bingId\":\"e23e51ed-d16f-4800-9a31-ed056168b9a2\",\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "bfcdf6fc-8f44-4933-bcaa-98d5ef240c83", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "9c5664a52dc41a919dd18eff3d6b217c" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "346", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000104-0000000000000208-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2a73afcc-eb2c-4cdd-a8ee-3cecd1a0933c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft moved its headquarters to Bellevue, Washington in January 1979.", + "language": "en" + }, + { + "id": "1", + "text": "Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.", + "language": "en" + } + ] + }, + "tasks": { + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0c78736c-41b0-4e5b-8500-26762d3f5bfa", + "Date": "Fri, 18 Feb 2022 19:11:21 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/738832b7-2ec8-4b9d-b000-2dba119702ed", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/738832b7-2ec8-4b9d-b000-2dba119702ed?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000105-0000000000000210-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8153e79e-8f1b-4b34-9dc8-d5c92cffa010", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac009c18-a253-4638-9bf8-9c2b732db9f5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "738832b7-2ec8-4b9d-b000-2dba119702ed", + "lastUpdateDateTime": "2022-02-18T19:11:21Z", + "createdDateTime": "2022-02-18T19:11:21Z", + "expirationDateTime": "2022-02-19T19:11:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/738832b7-2ec8-4b9d-b000-2dba119702ed?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000106-0000000000000212-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f20e2791-bb21-484d-b838-150d265e12a2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "39e43a54-b285-472c-823a-86bc5abb9e47", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "738832b7-2ec8-4b9d-b000-2dba119702ed", + "lastUpdateDateTime": "2022-02-18T19:11:21Z", + "createdDateTime": "2022-02-18T19:11:21Z", + "expirationDateTime": "2022-02-19T19:11:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/738832b7-2ec8-4b9d-b000-2dba119702ed?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000107-0000000000000214-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d545f077-c092-4581-8d4b-7bab6952f048", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1774485-3e94-4ab9-a9e6-5c8aed7d30ab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "738832b7-2ec8-4b9d-b000-2dba119702ed", + "lastUpdateDateTime": "2022-02-18T19:11:23Z", + "createdDateTime": "2022-02-18T19:11:21Z", + "expirationDateTime": "2022-02-19T19:11:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:23.5502506Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/738832b7-2ec8-4b9d-b000-2dba119702ed?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000108-0000000000000216-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "455268fb-f61d-4e5c-8a2c-20223a24d724", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0a50cb55-6fb3-44be-8198-4400c727cf7b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "jobId": "738832b7-2ec8-4b9d-b000-2dba119702ed", + "lastUpdateDateTime": "2022-02-18T19:11:23Z", + "createdDateTime": "2022-02-18T19:11:21Z", + "expirationDateTime": "2022-02-19T19:11:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:23.5502506Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json index 618e1f89450e..da7588d4e9e8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json @@ -1,101 +1,493 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.\",\"language\":\"es\"},{\"id\":\"3\",\"text\":\"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.\",\"language\":\"de\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "1bc90435-1bdc-4ad0-832f-fd5bad24f65c", - "date": "Sat, 23 Oct 2021 00:51:04 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b4ec9e2-46c6-456e-a439-54047f6b710a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "223" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b4ec9e2-46c6-456e-a439-54047f6b710a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b4ec9e2-46c6-456e-a439-54047f6b710a\",\"lastUpdateDateTime\":\"2021-10-23T00:51:04Z\",\"createdDateTime\":\"2021-10-23T00:51:04Z\",\"expirationDateTime\":\"2021-10-24T00:51:04Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "47a0d6ba-863e-4679-92b3-2c1c250052b6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b4ec9e2-46c6-456e-a439-54047f6b710a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b4ec9e2-46c6-456e-a439-54047f6b710a\",\"lastUpdateDateTime\":\"2021-10-23T00:51:04Z\",\"createdDateTime\":\"2021-10-23T00:51:04Z\",\"expirationDateTime\":\"2021-10-24T00:51:04Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "333f029d-beac-42d7-9c3b-023f32186d45", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b4ec9e2-46c6-456e-a439-54047f6b710a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b4ec9e2-46c6-456e-a439-54047f6b710a\",\"lastUpdateDateTime\":\"2021-10-23T00:51:06Z\",\"createdDateTime\":\"2021-10-23T00:51:04Z\",\"expirationDateTime\":\"2021-10-24T00:51:04Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:06.25256Z\",\"state\":\"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},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"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},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "4ca53ef8-3e7e-4521-8cbf-4e06341cfdf4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3b4ec9e2-46c6-456e-a439-54047f6b710a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3b4ec9e2-46c6-456e-a439-54047f6b710a\",\"lastUpdateDateTime\":\"2021-10-23T00:51:06Z\",\"createdDateTime\":\"2021-10-23T00:51:04Z\",\"expirationDateTime\":\"2021-10-24T00:51:04Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:06.25256Z\",\"state\":\"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},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"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},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "e6d4a2cd-0b84-4b06-bb81-d31674a20e44", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "58c31a1268898c94d00c54fe40756a87" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "471", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000099-0000000000000198-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7f81a8e1-3d6c-4b2b-875a-996d14b67bba", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.", + "language": "es" + }, + { + "id": "3", + "text": "Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegr\u00FCndet.", + "language": "de" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0094b428-fb73-43ca-9504-3ee336fcde63", + "Date": "Fri, 18 Feb 2022 19:11:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eb78efa1-98c0-475f-ba43-51ab4d044818", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "216" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eb78efa1-98c0-475f-ba43-51ab4d044818?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000100-0000000000000200-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8c4f7f82-483a-421f-bba7-dbe681d5eebd", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f61d71f2-ce99-408e-9abf-3b8bfd5fa18a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "eb78efa1-98c0-475f-ba43-51ab4d044818", + "lastUpdateDateTime": "2022-02-18T19:11:18Z", + "createdDateTime": "2022-02-18T19:11:18Z", + "expirationDateTime": "2022-02-19T19:11:18Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eb78efa1-98c0-475f-ba43-51ab4d044818?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000101-0000000000000202-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "176ea2c9-1ea7-45ef-8a74-a60e0bfc6d10", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f92f8b22-b232-4a03-b7ee-7cd373a5f6c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "eb78efa1-98c0-475f-ba43-51ab4d044818", + "lastUpdateDateTime": "2022-02-18T19:11:18Z", + "createdDateTime": "2022-02-18T19:11:18Z", + "expirationDateTime": "2022-02-19T19:11:18Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eb78efa1-98c0-475f-ba43-51ab4d044818?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000102-0000000000000204-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2756e273-a48f-4741-ba20-c2a408980d95", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23017dc6-861c-49b6-a5da-e2f84e0abec6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" + }, + "ResponseBody": { + "jobId": "eb78efa1-98c0-475f-ba43-51ab4d044818", + "lastUpdateDateTime": "2022-02-18T19:11:20Z", + "createdDateTime": "2022-02-18T19:11:18Z", + "expirationDateTime": "2022-02-19T19:11:18Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:20.667998Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eb78efa1-98c0-475f-ba43-51ab4d044818?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000103-0000000000000206-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "eb5fc13b-fbca-44ec-9286-6cd75cc3f2d5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d186d3ac-7c69-4ccc-927b-92f64a9c100e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "eb78efa1-98c0-475f-ba43-51ab4d044818", + "lastUpdateDateTime": "2022-02-18T19:11:20Z", + "createdDateTime": "2022-02-18T19:11:18Z", + "expirationDateTime": "2022-02-19T19:11:18Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:20.667998Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json index bf5273bbad2f..2a77ee61ab64 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json @@ -1,120 +1,433 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "071f85fc-2621-4bad-b28e-def419828c4c", - "date": "Sat, 23 Oct 2021 00:50:39 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a1092b4c-13e5-4a81-9488-d330fef16e51", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "175" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a1092b4c-13e5-4a81-9488-d330fef16e51", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a1092b4c-13e5-4a81-9488-d330fef16e51\",\"lastUpdateDateTime\":\"2021-10-23T00:50:39Z\",\"createdDateTime\":\"2021-10-23T00:50:39Z\",\"expirationDateTime\":\"2021-10-24T00:50:39Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c0861a9f-2013-4057-84dc-6116d5d2b66c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a1092b4c-13e5-4a81-9488-d330fef16e51", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a1092b4c-13e5-4a81-9488-d330fef16e51\",\"lastUpdateDateTime\":\"2021-10-23T00:50:39Z\",\"createdDateTime\":\"2021-10-23T00:50:39Z\",\"expirationDateTime\":\"2021-10-24T00:50:39Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "3eefd330-30f1-492f-b569-dacdcd59f441", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a1092b4c-13e5-4a81-9488-d330fef16e51", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a1092b4c-13e5-4a81-9488-d330fef16e51\",\"lastUpdateDateTime\":\"2021-10-23T00:50:40Z\",\"createdDateTime\":\"2021-10-23T00:50:39Z\",\"expirationDateTime\":\"2021-10-24T00:50:39Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "fb256ecd-4206-4583-876d-573982699298", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a1092b4c-13e5-4a81-9488-d330fef16e51", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a1092b4c-13e5-4a81-9488-d330fef16e51\",\"lastUpdateDateTime\":\"2021-10-23T00:50:42Z\",\"createdDateTime\":\"2021-10-23T00:50:39Z\",\"expirationDateTime\":\"2021-10-24T00:50:39Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:42.1582569Z\",\"state\":\"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\":[]},{\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "bdca4f50-269d-4572-97f7-5affecca29c6", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a1092b4c-13e5-4a81-9488-d330fef16e51", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"a1092b4c-13e5-4a81-9488-d330fef16e51\",\"lastUpdateDateTime\":\"2021-10-23T00:50:42Z\",\"createdDateTime\":\"2021-10-23T00:50:39Z\",\"expirationDateTime\":\"2021-10-24T00:50:39Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:42.1582569Z\",\"state\":\"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\":[]},{\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "e8c7b458-57a7-4373-a449-7d1ccf28ca9e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "56" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6a9e5e0a07c5759a5a0ec2a25c076f4a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "319", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000088-0000000000000176-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "743ef3ab-4fcb-41ba-82d6-84010058862f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "36ddff77-50de-4ba8-9645-873f25a4d293", + "Date": "Fri, 18 Feb 2022 19:11:09 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0c9ae36-3799-4c04-810c-a88815f1adbd", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "225" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0c9ae36-3799-4c04-810c-a88815f1adbd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000089-0000000000000178-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fc6e14e3-67f7-4210-a338-d657d8a99340", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6e9542d-aca1-413c-a32e-b50570587439", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c0c9ae36-3799-4c04-810c-a88815f1adbd", + "lastUpdateDateTime": "2022-02-18T19:11:10Z", + "createdDateTime": "2022-02-18T19:11:09Z", + "expirationDateTime": "2022-02-19T19:11:09Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0c9ae36-3799-4c04-810c-a88815f1adbd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000090-0000000000000180-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d62371fe-8c58-49f4-97c6-9b32112ecea1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bbb9a774-d685-4430-b01e-59f44fdf81d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "c0c9ae36-3799-4c04-810c-a88815f1adbd", + "lastUpdateDateTime": "2022-02-18T19:11:10Z", + "createdDateTime": "2022-02-18T19:11:09Z", + "expirationDateTime": "2022-02-19T19:11:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0c9ae36-3799-4c04-810c-a88815f1adbd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000091-0000000000000182-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b82eac3d-9624-4a78-b3c8-4764ee120fef", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b2016d7-7504-482c-8cdc-29ff93ca1df6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c0c9ae36-3799-4c04-810c-a88815f1adbd", + "lastUpdateDateTime": "2022-02-18T19:11:10Z", + "createdDateTime": "2022-02-18T19:11:09Z", + "expirationDateTime": "2022-02-19T19:11:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0c9ae36-3799-4c04-810c-a88815f1adbd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000092-0000000000000184-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3b398bcc-3423-4d4b-91ec-d322dbd8d320", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03bbe9f2-247c-4f6f-99ef-fa4c38bf88b6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "jobId": "c0c9ae36-3799-4c04-810c-a88815f1adbd", + "lastUpdateDateTime": "2022-02-18T19:11:12Z", + "createdDateTime": "2022-02-18T19:11:09Z", + "expirationDateTime": "2022-02-19T19:11:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:12.7315843Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0c9ae36-3799-4c04-810c-a88815f1adbd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000093-0000000000000186-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d0e39593-a88c-4411-b89c-b1fb6213e690", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4450087-58e8-4536-9495-f968734c7fc6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "c0c9ae36-3799-4c04-810c-a88815f1adbd", + "lastUpdateDateTime": "2022-02-18T19:11:12Z", + "createdDateTime": "2022-02-18T19:11:09Z", + "expirationDateTime": "2022-02-19T19:11:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:12.7315843Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json index 917debf1af33..853f45d5c98f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json @@ -1,196 +1,471 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\\n \\n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\\n \\n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\\n \\n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\\n \\n “Traditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,” he explained. “Based on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.”\\n \\n “Now, with Windows 365, we can do that within less than an hour of the account being created,” he said.\\n \\n Windows 365 puts Microsoft’s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\\n \\n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\\n \\n “Windows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not – maybe it was too costly, too complex or they didn’t have the expertise in house to do it,” said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\\n \\n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\\n \\n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user’s choosing from anywhere with an internet connection.\\n \\n “You want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office – you want them to have that same experience,” he said. “And you want them to have that experience in such a way that it feels familiar to them. It’s not this jolting thing that takes away all the things they love about Windows.”\\n \\n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft’s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\\n \\n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience – gamers – lacks an IT department to lean on when things glitch. “That started me thinking, ‘How do we build something that doesn’t require IT intervention, something that could truly scale to the consumer market?’” Manchester said.\\n \\n The consumer experience was Manchester’s benchmark when he started work on virtualization.\\n \\n “I took note of every time there was something that didn’t quite deliver on that,” he said. “And, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.”\\n \\n Covering that ground led to improvements in Microsoft’s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\\n \\n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\\n \\n “When we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,” he said.\\n \\n Soon after this bar was set, and the first batch of hires made – a handful of experts in virtualization and user experience – COVID-19 hit and changed the world.\\n \\n “We hired everybody else during the pandemic,” Manchester said. “They were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations – their bar was the experience they had on their laptop – and we basically used Windows 365 to build Windows 365.”\\n \\n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\\n \\n “We’re giving you Windows from the cloud,” Manchester said.\\n \",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"\\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said. She explained that customers were asking, “’How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?”\\n\\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there – in the office, at home or a coffee shop.\\n\\n “And then, when you’re done, you’re done. You won’t have any issues around security because you’re not saving anything on your device,” McKelvey said, noting that all the data is stored in the cloud.\\n\\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\\n\\n “I think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,” McKelvey said.\\n\\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\\n\\n We didn’t run it for very long,” he said. “It didn’t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.”\\n\\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government’s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester’s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\\n\\n “The impact that I believe we are finding, and the impact that we’re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,” he said.\\n\\n “Being able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.”\\n \",\"language\":\"en\"}]},\"tasks\":{\"extractiveSummarizationTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\",\"sentenceCount\":5,\"sortBy\":\"Offset\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "b65229f5-47bf-4785-b9e3-4a89016547ef", - "date": "Sat, 23 Oct 2021 00:50:26 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "240" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:26Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "ecf05bca-882e-4d2b-99fd-1d2b8673e4a7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:26Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "fb79e9a6-fb42-4817-be5f-9657c90ad9c3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:27Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "abe58fbb-0c13-44c1-a3b9-f955e9cbb5b3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:27Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "ea17d96f-bfa1-43ed-bc70-f2a083aedb0e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:27Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c3d24610-b6ce-4500-b901-d3c025e2f557", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:27Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "475a31c0-6104-4ef5-bbb0-8c00a8bf6357", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:27Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "5d31107d-66f9-4231-a2dc-98605df94af5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:38Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"extractiveSummarizationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:38.6775625Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentences\":[{\"text\":\"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.\",\"rankScore\":0.24,\"offset\":531,\"length\":160},{\"text\":\"Windows 365 puts Microsoft’s flagship operating system in the cloud.\",\"rankScore\":0.26,\"offset\":1864,\"length\":68},{\"text\":\"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.\",\"rankScore\":0.26,\"offset\":2283,\"length\":184},{\"text\":\"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.\",\"rankScore\":0.49,\"offset\":2468,\"length\":156},{\"text\":\"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\",\"rankScore\":1.0,\"offset\":2625,\"length\":156}],\"warnings\":[]},{\"id\":\"1\",\"sentences\":[{\"text\":\"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.\",\"rankScore\":0.63,\"offset\":11,\"length\":274},{\"text\":\"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.\",\"rankScore\":0.79,\"offset\":1109,\"length\":234},{\"text\":\"It enables employees accustomed to working from home to continue working from home;\",\"rankScore\":1.0,\"offset\":1344,\"length\":83},{\"text\":\"it enables companies to hire interns from halfway around the world;\",\"rankScore\":0.86,\"offset\":1428,\"length\":67},{\"text\":\"it allows startups to scale without requiring IT expertise.\",\"rankScore\":0.66,\"offset\":1496,\"length\":59}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-08-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "a00b3cae-8755-4d07-a915-3801cbf7db58", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "217" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/643a396e-baed-4af4-bf67-e2cb0d5de69a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"643a396e-baed-4af4-bf67-e2cb0d5de69a\",\"lastUpdateDateTime\":\"2021-10-23T00:50:38Z\",\"createdDateTime\":\"2021-10-23T00:50:26Z\",\"expirationDateTime\":\"2021-10-24T00:50:26Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"extractiveSummarizationTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:50:38.6775625Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentences\":[{\"text\":\"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.\",\"rankScore\":0.24,\"offset\":531,\"length\":160},{\"text\":\"Windows 365 puts Microsoft’s flagship operating system in the cloud.\",\"rankScore\":0.26,\"offset\":1864,\"length\":68},{\"text\":\"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.\",\"rankScore\":0.26,\"offset\":2283,\"length\":184},{\"text\":\"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.\",\"rankScore\":0.49,\"offset\":2468,\"length\":156},{\"text\":\"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\",\"rankScore\":1.0,\"offset\":2625,\"length\":156}],\"warnings\":[]},{\"id\":\"1\",\"sentences\":[{\"text\":\"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.\",\"rankScore\":0.63,\"offset\":11,\"length\":274},{\"text\":\"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.\",\"rankScore\":0.79,\"offset\":1109,\"length\":234},{\"text\":\"It enables employees accustomed to working from home to continue working from home;\",\"rankScore\":1.0,\"offset\":1344,\"length\":83},{\"text\":\"it enables companies to hire interns from halfway around the world;\",\"rankScore\":0.86,\"offset\":1428,\"length\":67},{\"text\":\"it allows startups to scale without requiring IT expertise.\",\"rankScore\":0.66,\"offset\":1496,\"length\":59}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-08-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "0a72c96d-c908-4050-b250-dcbb332a02d8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fa3d6e17faf35a4cfced17d12fcad595" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "11477", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000082-0000000000000164-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6c34b92b-2ad9-42e0-b861-585db8f710d6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\n \n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\n \n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\n \n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\n \n \u201CTraditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,\u201D he explained. \u201CBased on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.\u201D\n \n \u201CNow, with Windows 365, we can do that within less than an hour of the account being created,\u201D he said.\n \n Windows 365 puts Microsoft\u2019s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\n \n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.\n \n \u201CWindows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not \u2013 maybe it was too costly, too complex or they didn\u2019t have the expertise in house to do it,\u201D said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\n \n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\n \n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user\u2019s choosing from anywhere with an internet connection.\n \n \u201CYou want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office \u2013 you want them to have that same experience,\u201D he said. \u201CAnd you want them to have that experience in such a way that it feels familiar to them. It\u2019s not this jolting thing that takes away all the things they love about Windows.\u201D\n \n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft\u2019s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\n \n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience \u2013 gamers \u2013 lacks an IT department to lean on when things glitch. \u201CThat started me thinking, \u2018How do we build something that doesn\u2019t require IT intervention, something that could truly scale to the consumer market?\u2019\u201D Manchester said.\n \n The consumer experience was Manchester\u2019s benchmark when he started work on virtualization.\n \n \u201CI took note of every time there was something that didn\u2019t quite deliver on that,\u201D he said. \u201CAnd, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.\u201D\n \n Covering that ground led to improvements in Microsoft\u2019s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\n \n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\n \n \u201CWhen we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,\u201D he said.\n \n Soon after this bar was set, and the first batch of hires made \u2013 a handful of experts in virtualization and user experience \u2013 COVID-19 hit and changed the world.\n \n \u201CWe hired everybody else during the pandemic,\u201D Manchester said. \u201CThey were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations \u2013 their bar was the experience they had on their laptop \u2013 and we basically used Windows 365 to build Windows 365.\u201D\n \n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\n \n \u201CWe\u2019re giving you Windows from the cloud,\u201D Manchester said.\n ", + "language": "en" + }, + { + "id": "1", + "text": "\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said. She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D\n\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.\n\n \u201CAnd then, when you\u2019re done, you\u2019re done. You won\u2019t have any issues around security because you\u2019re not saving anything on your device,\u201D McKelvey said, noting that all the data is stored in the cloud.\n\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\n\n \u201CI think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,\u201D McKelvey said.\n\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\n\n We didn\u2019t run it for very long,\u201D he said. \u201CIt didn\u2019t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.\u201D\n\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government\u2019s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester\u2019s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\n\n \u201CThe impact that I believe we are finding, and the impact that we\u2019re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,\u201D he said.\n\n \u201CBeing able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.\u201D\n ", + "language": "en" + } + ] + }, + "tasks": { + "extractiveSummarizationTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit", + "sentenceCount": 5, + "sortBy": "Offset" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c949e038-8dd1-412f-b74e-78b07ad5497a", + "Date": "Fri, 18 Feb 2022 19:11:04 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8a554785-d338-4df7-8e6e-9ee67d79bf5c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8a554785-d338-4df7-8e6e-9ee67d79bf5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000083-0000000000000166-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "30b042f5-79ed-44c7-924e-9ab5b8c66b5a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a947d59b-03c1-4f13-8dbe-e0d6cbe4633e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "8a554785-d338-4df7-8e6e-9ee67d79bf5c", + "lastUpdateDateTime": "2022-02-18T19:11:04Z", + "createdDateTime": "2022-02-18T19:11:04Z", + "expirationDateTime": "2022-02-19T19:11:04Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8a554785-d338-4df7-8e6e-9ee67d79bf5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000084-0000000000000168-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cd9c097b-4c90-4415-a2a9-f38ec88593a5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a1f8f254-6b12-43e2-b0ca-b97b224b1ff0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "8a554785-d338-4df7-8e6e-9ee67d79bf5c", + "lastUpdateDateTime": "2022-02-18T19:11:04Z", + "createdDateTime": "2022-02-18T19:11:04Z", + "expirationDateTime": "2022-02-19T19:11:04Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8a554785-d338-4df7-8e6e-9ee67d79bf5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000085-0000000000000170-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2f1be8b7-11a9-41bb-b0af-bccc5b06f9c4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7640e7f6-a4ec-42b2-a10e-f7c4f6ae43e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "8a554785-d338-4df7-8e6e-9ee67d79bf5c", + "lastUpdateDateTime": "2022-02-18T19:11:04Z", + "createdDateTime": "2022-02-18T19:11:04Z", + "expirationDateTime": "2022-02-19T19:11:04Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8a554785-d338-4df7-8e6e-9ee67d79bf5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000086-0000000000000172-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a2a444cf-1233-4caa-9bd4-cf9d7d769974", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c1a2f49-ff8a-44b3-9cc4-d7e5d92fa27b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "82" + }, + "ResponseBody": { + "jobId": "8a554785-d338-4df7-8e6e-9ee67d79bf5c", + "lastUpdateDateTime": "2022-02-18T19:11:08Z", + "createdDateTime": "2022-02-18T19:11:04Z", + "expirationDateTime": "2022-02-19T19:11:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:08.8545284Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8a554785-d338-4df7-8e6e-9ee67d79bf5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000087-0000000000000174-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5d2d6a36-0183-46d4-b654-06ce3ba70cc4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f920fcdf-cad4-45b9-97b2-073b53bc9787", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "8a554785-d338-4df7-8e6e-9ee67d79bf5c", + "lastUpdateDateTime": "2022-02-18T19:11:08Z", + "createdDateTime": "2022-02-18T19:11:04Z", + "expirationDateTime": "2022-02-19T19:11:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:08.8545284Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json index 38ffce1349e5..8556cbfbdbb6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json @@ -1,253 +1,313 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "6d8aff18-e584-4975-8b07-4d9b28c8b6b6", - "date": "Sat, 23 Oct 2021 00:50:43 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "209" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "e76c4706-5267-4b6f-b1bc-bb9a48bb7137", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "dac44f2b-20d4-481f-99eb-87a07829b82c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "401e1eab-17be-4c3d-8ff2-04b2d37ee422", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "6e264d37-c3ae-4e69-aa9e-eb8eea1d5cb4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "d91f9011-8cd2-4e4e-ab21-fd7c967f5057", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "302fc568-bc56-4ef1-b5b3-621d88d8bf4b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "932d030e-d256-4fe9-a988-42c12791b83d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "7c005b37-cf03-487e-a160-19a43f15228f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "5202791f-e834-4329-a4da-5eb905938868", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:50:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:50:44Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "158a952c-87d8-4f31-828d-06b8a5899703", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:51:01Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:01.818244Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "d0e7f3cd-4714-4eae-a523-c248237a9049", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d53986cc-a814-40eb-96de-7fbf51ca8c50", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d53986cc-a814-40eb-96de-7fbf51ca8c50\",\"lastUpdateDateTime\":\"2021-10-23T00:51:01Z\",\"createdDateTime\":\"2021-10-23T00:50:44Z\",\"expirationDateTime\":\"2021-10-24T00:50:44Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:01.818244Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "fbe1db76-5d6a-49a1-8f2e-588ad21dec0e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "16c8a31abbc40220a3d080d74cb1bd0d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "287", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000094-0000000000000188-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4b06daaf-9e00-4fe2-8d3b-318fbf473082", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4eb3e409-77cb-4e74-bffc-aa902d80c987", + "Date": "Fri, 18 Feb 2022 19:11:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2e4050b-36f9-49ff-a423-9d3237ee7142", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2e4050b-36f9-49ff-a423-9d3237ee7142?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000095-0000000000000190-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b8810f6c-f585-4afb-87f1-1fb5f1691ec9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8f7898c-5be0-40cf-a1c6-96d1ba0d0f62", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e2e4050b-36f9-49ff-a423-9d3237ee7142", + "lastUpdateDateTime": "2022-02-18T19:11:15Z", + "createdDateTime": "2022-02-18T19:11:15Z", + "expirationDateTime": "2022-02-19T19:11:15Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2e4050b-36f9-49ff-a423-9d3237ee7142?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000096-0000000000000192-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dc81675c-a9fd-43ed-b890-9b81d258cbea", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7629a9e0-adae-41f6-982c-6cfc1e137ec1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e2e4050b-36f9-49ff-a423-9d3237ee7142", + "lastUpdateDateTime": "2022-02-18T19:11:15Z", + "createdDateTime": "2022-02-18T19:11:15Z", + "expirationDateTime": "2022-02-19T19:11:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2e4050b-36f9-49ff-a423-9d3237ee7142?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000097-0000000000000194-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "180b23ff-82a2-426d-87f6-80ced6c03c7c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6c9e259-717a-4f68-9b9f-2dcd8fa5c0f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "e2e4050b-36f9-49ff-a423-9d3237ee7142", + "lastUpdateDateTime": "2022-02-18T19:11:16Z", + "createdDateTime": "2022-02-18T19:11:15Z", + "expirationDateTime": "2022-02-19T19:11:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:16.9968801Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2e4050b-36f9-49ff-a423-9d3237ee7142?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000098-0000000000000196-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7ec0ffd5-c38d-4d05-9edf-5894c0f2e1bb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "35e6db24-1014-44dc-a3fc-21f7811c2fd6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "jobId": "e2e4050b-36f9-49ff-a423-9d3237ee7142", + "lastUpdateDateTime": "2022-02-18T19:11:16Z", + "createdDateTime": "2022-02-18T19:11:15Z", + "expirationDateTime": "2022-02-19T19:11:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:16.9968801Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json index c3a7930d564f..f9faa06c15fd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json @@ -1,101 +1,376 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"3\",\"text\":\"Is 998.214.865-68 your Brazilian CPF number?\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "340595a9-802e-446d-9f37-f52143666052", - "date": "Sat, 23 Oct 2021 00:51:23 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9e32774e-fd9c-4ae7-96b2-8861ea452696", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "255" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9e32774e-fd9c-4ae7-96b2-8861ea452696", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9e32774e-fd9c-4ae7-96b2-8861ea452696\",\"lastUpdateDateTime\":\"2021-10-23T00:51:24Z\",\"createdDateTime\":\"2021-10-23T00:51:23Z\",\"expirationDateTime\":\"2021-10-24T00:51:23Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "42b79e1f-0202-405d-9987-e3c5c00ac6bc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9e32774e-fd9c-4ae7-96b2-8861ea452696", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9e32774e-fd9c-4ae7-96b2-8861ea452696\",\"lastUpdateDateTime\":\"2021-10-23T00:51:24Z\",\"createdDateTime\":\"2021-10-23T00:51:23Z\",\"expirationDateTime\":\"2021-10-24T00:51:23Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "e5b79607-40c7-442f-8f0f-c317e5d8b261", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9e32774e-fd9c-4ae7-96b2-8861ea452696", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9e32774e-fd9c-4ae7-96b2-8861ea452696\",\"lastUpdateDateTime\":\"2021-10-23T00:51:25Z\",\"createdDateTime\":\"2021-10-23T00:51:23Z\",\"expirationDateTime\":\"2021-10-24T00:51:23Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:25.9328562Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "f72f42fb-86ef-48b7-b234-9ed0a7ded108", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "149" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9e32774e-fd9c-4ae7-96b2-8861ea452696", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9e32774e-fd9c-4ae7-96b2-8861ea452696\",\"lastUpdateDateTime\":\"2021-10-23T00:51:25Z\",\"createdDateTime\":\"2021-10-23T00:51:23Z\",\"expirationDateTime\":\"2021-10-24T00:51:23Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:25.9328562Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "4d46e657-cbbc-4dfc-8961-4b05582f2b3f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "25cccf03b57f9bc577c4293caeb25808" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "383", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000109-0000000000000218-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3787fa66-7dd9-4483-a53c-89f7a483a607", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "3", + "text": "Is 998.214.865-68 your Brazilian CPF number?" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "781729c9-115d-4511-8ed9-6f26d9e5169e", + "Date": "Fri, 18 Feb 2022 19:11:24 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bbb7ac29-81c5-4242-a8fa-6103e0656e56", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "215" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bbb7ac29-81c5-4242-a8fa-6103e0656e56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000110-0000000000000220-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d1355864-7fa7-4a20-9a3a-37bc8eb441bb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15deaa19-0719-4344-ba99-41279eff1fdf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "bbb7ac29-81c5-4242-a8fa-6103e0656e56", + "lastUpdateDateTime": "2022-02-18T19:11:25Z", + "createdDateTime": "2022-02-18T19:11:24Z", + "expirationDateTime": "2022-02-19T19:11:24Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bbb7ac29-81c5-4242-a8fa-6103e0656e56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000111-0000000000000222-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "304acf80-9bf5-4700-8971-7b7c26867a05", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe8660ee-665d-4895-94d6-e1eaa6414b30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "bbb7ac29-81c5-4242-a8fa-6103e0656e56", + "lastUpdateDateTime": "2022-02-18T19:11:25Z", + "createdDateTime": "2022-02-18T19:11:24Z", + "expirationDateTime": "2022-02-19T19:11:24Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bbb7ac29-81c5-4242-a8fa-6103e0656e56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000112-0000000000000224-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ca0b6004-6cdc-4f2c-8046-938561e8ad0a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b913858a-091f-47ed-9bce-b74e04b16a35", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "jobId": "bbb7ac29-81c5-4242-a8fa-6103e0656e56", + "lastUpdateDateTime": "2022-02-18T19:11:26Z", + "createdDateTime": "2022-02-18T19:11:24Z", + "expirationDateTime": "2022-02-19T19:11:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:26.9129323Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bbb7ac29-81c5-4242-a8fa-6103e0656e56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000113-0000000000000226-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6543acbf-dfd0-4fb4-9a53-de4220b8a11e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9aca8a92-bdd9-449f-9b15-2109717b3ed8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": { + "jobId": "bbb7ac29-81c5-4242-a8fa-6103e0656e56", + "lastUpdateDateTime": "2022-02-18T19:11:26Z", + "createdDateTime": "2022-02-18T19:11:24Z", + "expirationDateTime": "2022-02-19T19:11:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:26.9129323Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json index 05a4ceafdc30..37945062f77d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json @@ -1,158 +1,366 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"piiCategories\":[\"USSocialSecurityNumber\"],\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "23286531-64b9-4776-b7e2-886610d8f26a", - "date": "Sat, 23 Oct 2021 00:51:26 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "303" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:27Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "bdfbe7cb-5b49-4176-8b6b-fa39eb84edae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:27Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "b66d81f2-b85b-43f9-8cc9-ff03c0c4e1af", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:27Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "0b4a232a-1ada-433d-9903-df5087c3d7d2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "26" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:27Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "c5ca40b4-3b64-4711-8319-51dabb5b86c7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:27Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "14736912-9a0f-4e69-8ed7-4a4fabb6fb99", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:34Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:34.563662Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "e6b3525e-864b-468e-a69b-bd1138cf580b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5051625-a131-48ca-bd0d-8e8839080228", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5051625-a131-48ca-bd0d-8e8839080228\",\"lastUpdateDateTime\":\"2021-10-23T00:51:34Z\",\"createdDateTime\":\"2021-10-23T00:51:26Z\",\"expirationDateTime\":\"2021-10-24T00:51:26Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:34.563662Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "314d57b8-d641-47a4-af70-6decae7bed25", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "2fed38c792b0dad3471c4df5a4cc39b1" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "470", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000114-0000000000000228-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "009ad3d7-f7ea-4165-b501-d985d3b4c73c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "piiCategories": [ + "USSocialSecurityNumber" + ], + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6feb01fc-5547-43d1-a9f1-fdfdf625d063", + "Date": "Fri, 18 Feb 2022 19:11:28 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f5b156b-ccd9-42a6-8e33-a0e70f9a4694", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f5b156b-ccd9-42a6-8e33-a0e70f9a4694?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000115-0000000000000230-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8de61b67-ca13-4913-b07e-dd9f382177af", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4cf94303-d195-4a44-9468-67613a158f33", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "1f5b156b-ccd9-42a6-8e33-a0e70f9a4694", + "lastUpdateDateTime": "2022-02-18T19:11:28Z", + "createdDateTime": "2022-02-18T19:11:28Z", + "expirationDateTime": "2022-02-19T19:11:28Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f5b156b-ccd9-42a6-8e33-a0e70f9a4694?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000116-0000000000000232-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "880427ac-92f1-47c3-a105-7ead9c340513", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f762a1c-ec52-4d70-afbf-9eb4c5c1a520", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "1f5b156b-ccd9-42a6-8e33-a0e70f9a4694", + "lastUpdateDateTime": "2022-02-18T19:11:28Z", + "createdDateTime": "2022-02-18T19:11:28Z", + "expirationDateTime": "2022-02-19T19:11:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f5b156b-ccd9-42a6-8e33-a0e70f9a4694?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000117-0000000000000234-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ee59cb45-cada-4c46-b19a-7b597970840f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c313fb5-6ec9-44f4-aaec-114bc9f8b099", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "1f5b156b-ccd9-42a6-8e33-a0e70f9a4694", + "lastUpdateDateTime": "2022-02-18T19:11:28Z", + "createdDateTime": "2022-02-18T19:11:28Z", + "expirationDateTime": "2022-02-19T19:11:28Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f5b156b-ccd9-42a6-8e33-a0e70f9a4694?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000118-0000000000000236-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "94aa860b-a3f1-4200-8b97-31d2d1ef4c8f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6390325-aec7-4617-87e0-c83a934ee748", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "1f5b156b-ccd9-42a6-8e33-a0e70f9a4694", + "lastUpdateDateTime": "2022-02-18T19:11:31Z", + "createdDateTime": "2022-02-18T19:11:28Z", + "expirationDateTime": "2022-02-19T19:11:28Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:31.6154002Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f5b156b-ccd9-42a6-8e33-a0e70f9a4694?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000119-0000000000000238-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d80b6869-5698-4c72-9106-1258cdc2bd2f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "20a625e9-35d0-4598-b274-53715ba83962", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "jobId": "1f5b156b-ccd9-42a6-8e33-a0e70f9a4694", + "lastUpdateDateTime": "2022-02-18T19:11:31Z", + "createdDateTime": "2022-02-18T19:11:28Z", + "expirationDateTime": "2022-02-19T19:11:28Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:31.6154002Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json index 9e5ad2c7f501..ff50f0466d42 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json @@ -1,291 +1,1692 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"The food was unacceptable\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"The rooms were beautiful. The AC was good and quiet.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The breakfast was good, but the toilet was smelly.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"The toilet smelled.\",\"language\":\"en\"}]},\"tasks\":{\"sentimentAnalysisTasks\":[{\"parameters\":{\"opinionMining\":true,\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "072da7d4-e74f-4f91-9deb-6fbeb76db753", - "date": "Sat, 23 Oct 2021 00:51:35 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "304" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "cea6bdc4-4487-4d55-87ed-e59f3f5247ef", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "a5bb6ce0-5386-4239-9558-0c258a4ae0ea", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "50a635ac-4806-40ee-876c-a46f8636a826", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "965637df-c968-4919-9833-f6feb550c11a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "46897f36-3116-496a-bdeb-5242ee4a2ae1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "94a3b053-1c0c-4d60-84c9-35538b3fa9d0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "2a64eec5-9a74-4a21-816b-3fd7a2369ed2", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "d8a8d30d-7e81-4d1d-99d5-b6437ad6e907", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "75201c47-8e4a-42bb-ae54-8116ba171e33", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "95423ed9-39f4-4872-91ee-7b9f76473b86", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "44f5e021-0f59-4f4b-ace1-4b725bd07660", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:36Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "fb120cbf-5bd0-4f15-ba94-404c6fcb3e4b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:58Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:58.4554885Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "49434d7c-0516-4db9-98cb-d6eea0a3c652", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "110" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d5de7349-1748-4c24-b8af-3b55a91ca066", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5de7349-1748-4c24-b8af-3b55a91ca066\",\"lastUpdateDateTime\":\"2021-10-23T00:51:58Z\",\"createdDateTime\":\"2021-10-23T00:51:35Z\",\"expirationDateTime\":\"2021-10-24T00:51:35Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:51:58.4554885Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":13,\"length\":12,\"text\":\"unacceptable\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"1\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":25,\"text\":\"The rooms were beautiful.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":15,\"length\":9,\"text\":\"beautiful\",\"isNegated\":false}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":26,\"length\":26,\"text\":\"The AC was good and quiet.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":37,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":46,\"length\":5,\"text\":\"quiet\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"2\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"neutral\":0.0,\"negative\":0.99},\"offset\":0,\"length\":50,\"text\":\"The breakfast was good, but the toilet was smelly.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":18,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":43,\"length\":6,\"text\":\"smelly\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"3\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":71,\"text\":\"Loved this hotel - good breakfast - nice shuttle service - clean rooms.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":19,\"length\":4,\"text\":\"good\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":36,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":5,\"text\":\"loved\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":59,\"length\":5,\"text\":\"clean\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"4\",\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"sentences\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"neutral\":0.0,\"negative\":0.0},\"offset\":0,\"length\":56,\"text\":\"I had a great unobstructed view of the Microsoft campus.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":8,\"length\":5,\"text\":\"great\",\"isNegated\":false},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.93,\"negative\":0.07},\"offset\":14,\"length\":12,\"text\":\"unobstructed\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"5\",\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"sentences\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"neutral\":0.0,\"negative\":1.0},\"offset\":0,\"length\":75,\"text\":\"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":0,\"length\":4,\"text\":\"nice\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":30,\"length\":3,\"text\":\"old\",\"isNegated\":false},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":53,\"length\":5,\"text\":\"dirty\",\"isNegated\":false}]}],\"warnings\":[]},{\"id\":\"6\",\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"sentences\":[{\"sentiment\":\"neutral\",\"confidenceScores\":{\"positive\":0.03,\"neutral\":0.63,\"negative\":0.34},\"offset\":0,\"length\":19,\"text\":\"The toilet smelled.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "704b7e36-087d-4e9c-a910-8643486e0bec", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "116" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1e5a0cf84c196df5b2e607ae6f82bbaa" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "749", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000120-0000000000000240-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b9f5b17a-646a-4def-a9a1-19095441b59e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "tasks": { + "sentimentAnalysisTasks": [ + { + "parameters": { + "opinionMining": true, + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0908f41f-6f6c-4b4f-9714-0eaa6c67ca35", + "Date": "Fri, 18 Feb 2022 19:11:33 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "290" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000121-0000000000000242-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ed25b9eb-7c41-43ac-b4c5-69214d8417da", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36f1b0ef-ea2d-4240-a706-57518079f776", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:33Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000122-0000000000000244-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2f9c8511-37a3-4593-a01a-80838487ff2b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ad5e9d9-abd7-4ffb-8f0f-18e82b1778e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:34Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000123-0000000000000246-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "81e0ba86-e8e8-484c-a60c-268fba10e3eb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bebc093-94af-4f11-a45c-1697fe2f20e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:34Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000124-0000000000000248-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f4febef0-43e4-451e-a708-74414be6f853", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5c4e71bf-3980-4cc5-923a-5b2a54b4fef6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:34Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000125-0000000000000250-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a4f9168a-96ef-4ceb-a034-e3b6c07b6d7e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4bca37d-a4e0-449f-81a5-3dd48f3b8853", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:34Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000126-0000000000000252-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4a4b59b1-43c7-4514-9d10-9599bca4ee25", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4442556b-ddaf-4cc0-a16d-ba193cf73506", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:42Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:42.1231937Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ccdf0c1-8dd8-4720-9a17-f73c3991ee97?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000127-0000000000000254-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1d62f3a6-6ac2-47fa-bd8b-89d3350d5d0b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bddffd1-bc3c-454d-ab60-3a0fb0e5b5c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "117" + }, + "ResponseBody": { + "jobId": "2ccdf0c1-8dd8-4720-9a17-f73c3991ee97", + "lastUpdateDateTime": "2022-02-18T19:11:42Z", + "createdDateTime": "2022-02-18T19:11:33Z", + "expirationDateTime": "2022-02-19T19:11:33Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:42.1231937Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json index 6059caf2d464..81beeea2a100 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json @@ -1,329 +1,671 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food. I recommend you try it.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "2f527e7f-b066-4cc3-9109-7d8bf25d60cf", - "date": "Sat, 23 Oct 2021 00:51:59 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "322" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:51:59Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "d026305d-9800-4f9c-b363-c82924dc3804", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:51:59Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "0b055de4-cdf5-4034-807e-ee0948af90ad", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:51:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:51:59Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "420de290-afcf-40d2-bc48-628b42358147", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:51:59Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "ed572a4f-10ad-4cd3-a4d4-dc4f77416c21", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:06Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "5fda5bbc-442b-407d-bc78-7c511ffedd29", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:06Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "fe5a1bd7-955e-4812-986c-8634df30b02a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:06Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "67a73ba9-becc-4f1d-a420-5aa221ddb1ac", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:06Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "dd818a5b-0778-45fb-85da-3b2c32a9b191", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:14Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "774ffc18-b63c-46d6-858a-d2e7014fa88f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:14Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "66890acd-86b0-4fde-a437-9362175e2b2b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "285" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:14Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "c8fcbde0-603b-4cfb-9ec1-ef2607c7ddda", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "508" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:14Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "f21f629f-f2c6-4d6a-a3f7-ee1de4aa64de", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:14Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "ac0a4764-7748-4ed7-9037-63439bfeb44d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "163" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:14Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "140c5147-571b-4965-9844-df7701ad09cd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:27Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:27.5165528Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "364ab847-ddbe-44c5-82a3-5650cf6b11e3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "618" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f7d1113d-feef-4f53-b947-3fab855116d9", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f7d1113d-feef-4f53-b947-3fab855116d9\",\"lastUpdateDateTime\":\"2021-10-23T00:52:27Z\",\"createdDateTime\":\"2021-10-23T00:51:59Z\",\"expirationDateTime\":\"2021-10-24T00:51:59Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:14.6179129Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:06.8613081Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:52:27.5165528Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"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\"}}]}}", - "responseHeaders": { - "apim-request-id": "e3092b0e-6914-4461-bce1-d6f388a5fb5c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:52:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "252" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6d3933a0781393a55f4c0bc2bd10dd4a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "557", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000129-0000000000000258-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "13131549-fb52-4ffc-aed9-a1165ec5d393", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "The restaurant had really good food. I recommend you try it.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "291df44b-65a1-4cff-b929-193c6a69b313", + "Date": "Fri, 18 Feb 2022 19:11:44 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4efebe3d-fcdb-40a2-9319-45cf9f1c8542", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "471" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4efebe3d-fcdb-40a2-9319-45cf9f1c8542?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000130-0000000000000260-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "42672564-266c-409d-a3eb-21209f40e545", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e93507a-5701-41e8-96a4-90958076a13f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "4efebe3d-fcdb-40a2-9319-45cf9f1c8542", + "lastUpdateDateTime": "2022-02-18T19:11:44Z", + "createdDateTime": "2022-02-18T19:11:43Z", + "expirationDateTime": "2022-02-19T19:11:43Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4efebe3d-fcdb-40a2-9319-45cf9f1c8542?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000131-0000000000000262-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "94a8dbd2-f9d2-432d-8c28-37cc68503d0f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f297c53-790c-40f2-b881-eb94c821e44a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "4efebe3d-fcdb-40a2-9319-45cf9f1c8542", + "lastUpdateDateTime": "2022-02-18T19:11:44Z", + "createdDateTime": "2022-02-18T19:11:43Z", + "expirationDateTime": "2022-02-19T19:11:43Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4efebe3d-fcdb-40a2-9319-45cf9f1c8542?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000132-0000000000000264-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4f747e2e-b889-4e23-973a-eac7b784ba1d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18ff9092-f7e2-4106-8253-0f95c8ef5b64", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "120" + }, + "ResponseBody": { + "jobId": "4efebe3d-fcdb-40a2-9319-45cf9f1c8542", + "lastUpdateDateTime": "2022-02-18T19:11:46Z", + "createdDateTime": "2022-02-18T19:11:43Z", + "expirationDateTime": "2022-02-19T19:11:43Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:45.9923335Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:46.305802Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4efebe3d-fcdb-40a2-9319-45cf9f1c8542?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000133-0000000000000266-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7f3f60e0-0a12-4ac3-aff3-f3db29b123bb", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "08094a04-c199-4ced-b801-09c87eb87fe3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "577" + }, + "ResponseBody": { + "jobId": "4efebe3d-fcdb-40a2-9319-45cf9f1c8542", + "lastUpdateDateTime": "2022-02-18T19:11:46Z", + "createdDateTime": "2022-02-18T19:11:43Z", + "expirationDateTime": "2022-02-19T19:11:43Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:46.9677616Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:45.9923335Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:46.305802Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4efebe3d-fcdb-40a2-9319-45cf9f1c8542?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000134-0000000000000268-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "66bdeab9-c071-4565-93c1-27a9a92026e2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b0984c1d-dacc-4338-86c1-80ee58643e3a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:11:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "233" + }, + "ResponseBody": { + "jobId": "4efebe3d-fcdb-40a2-9319-45cf9f1c8542", + "lastUpdateDateTime": "2022-02-18T19:11:46Z", + "createdDateTime": "2022-02-18T19:11:43Z", + "expirationDateTime": "2022-02-19T19:11:43Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:46.9677616Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:45.9923335Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:11:46.305802Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json index 37921e402165..889e38573668 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json @@ -1,158 +1,328 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"},\"taskName\":\"action1\"},{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"},\"taskName\":\"action2\"}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "5e11cb4c-c925-4f44-8dae-a3b03cfd7d0f", - "date": "Thu, 28 Oct 2021 02:47:22 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "170" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:22Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "764a126e-758e-4b19-900d-afd4546a1d30", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:22Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "ea1d0076-85d3-4013-8950-3d78341961b6", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:24Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", - "responseHeaders": { - "apim-request-id": "e98468ef-ab92-47d6-b690-ea565bd1544c", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:24Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-28T02:47:24.5197346Z\",\"taskName\":\"action2\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "fbedd173-f3d1-4db2-8955-2a0f8fa02088", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:28Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-28T02:47:24.5197346Z\",\"taskName\":\"action2\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "7d83dbf3-2166-4c58-9adc-5fecfc463bf3", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:30Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-28T02:47:30.2456381Z\",\"taskName\":\"action1\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}},{\"lastUpdateDateTime\":\"2021-10-28T02:47:24.5197346Z\",\"taskName\":\"action2\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "f8835af3-ccb3-4787-893f-8b748501e7fe", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/79d83b2c-61d0-4485-82ac-65c35180931a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"79d83b2c-61d0-4485-82ac-65c35180931a\",\"lastUpdateDateTime\":\"2021-10-28T02:47:30Z\",\"createdDateTime\":\"2021-10-28T02:47:22Z\",\"expirationDateTime\":\"2021-10-29T02:47:22Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-28T02:47:30.2456381Z\",\"taskName\":\"action1\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}},{\"lastUpdateDateTime\":\"2021-10-28T02:47:24.5197346Z\",\"taskName\":\"action2\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "e0b4da1f-aae7-40d9-bd43-68167d54a119", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 28 Oct 2021 02:47:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ad100e378d0887ae93badeebd4dba980" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000226-0000000000000452-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "32081f49-0237-4894-83af-eba00e154191", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action1" + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action2" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2b2d81e0-560d-4e6f-b7c0-dbcd476e649f", + "Date": "Fri, 18 Feb 2022 19:13:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f863c4a6-1ed4-4c09-9218-99047f17c0c3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f863c4a6-1ed4-4c09-9218-99047f17c0c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000227-0000000000000454-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4e320e0e-c60a-48cb-996b-e82ec038bed4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3443e1dd-b250-47a8-8aac-b8c89a7ca64f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "f863c4a6-1ed4-4c09-9218-99047f17c0c3", + "lastUpdateDateTime": "2022-02-18T19:13:37Z", + "createdDateTime": "2022-02-18T19:13:37Z", + "expirationDateTime": "2022-02-19T19:13:37Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f863c4a6-1ed4-4c09-9218-99047f17c0c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000228-0000000000000456-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f8cbe8c5-6bc8-4e7b-af98-eeaed8e80ccc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "38a4f65e-4b9a-4ae5-a943-3739cba56896", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "f863c4a6-1ed4-4c09-9218-99047f17c0c3", + "lastUpdateDateTime": "2022-02-18T19:13:37Z", + "createdDateTime": "2022-02-18T19:13:37Z", + "expirationDateTime": "2022-02-19T19:13:37Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f863c4a6-1ed4-4c09-9218-99047f17c0c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000229-0000000000000458-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1bf60e40-1404-4123-93d2-327c1c70209e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1dd1bf02-9cb3-4058-9d2c-264089911340", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "jobId": "f863c4a6-1ed4-4c09-9218-99047f17c0c3", + "lastUpdateDateTime": "2022-02-18T19:13:39Z", + "createdDateTime": "2022-02-18T19:13:37Z", + "expirationDateTime": "2022-02-19T19:13:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:39.7061156Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:13:39.6338521Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f863c4a6-1ed4-4c09-9218-99047f17c0c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000230-0000000000000460-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8c4362b3-50e0-4f80-ba91-0723e312b31e", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3709b4d5-bfc1-4ecc-b751-2630ca7f7166", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": { + "jobId": "f863c4a6-1ed4-4c09-9218-99047f17c0c3", + "lastUpdateDateTime": "2022-02-18T19:13:39Z", + "createdDateTime": "2022-02-18T19:13:37Z", + "expirationDateTime": "2022-02-19T19:13:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:13:39.7061156Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:13:39.6338521Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json index f6f05e7f5111..8464a0f1dd40 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json @@ -1,158 +1,1175 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "da7b1040-d617-453b-a2b1-c64ed12c5436", - "date": "Sat, 23 Oct 2021 00:53:51 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "307" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:51Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "1827c778-6868-4940-afb3-077febc12700", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:51Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "04d06d6d-10ec-4fa6-961f-3207022ed337", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:51 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:53Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:53.5046242Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "f1c274c9-127f-4136-949a-8789db17b5e5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "139" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:53Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:53.5046242Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "41563050-a134-4e66-b3d4-e0d5c642b5e9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "175" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:57Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:53.5046242Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "a94b5d41-2d1a-494c-99a0-cf6194768150", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:59Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:59.8102597Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:53.5046242Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:59.5973023Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "180bc463-6c05-4b24-a6d0-4354a258c88e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "231" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/00f57915-61c1-44da-8548-04f014fd811f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"00f57915-61c1-44da-8548-04f014fd811f\",\"lastUpdateDateTime\":\"2021-10-23T00:53:59Z\",\"createdDateTime\":\"2021-10-23T00:53:51Z\",\"expirationDateTime\":\"2021-10-24T00:53:51Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:59.8102597Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:53.5046242Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:59.5973023Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "ec6c97d5-b3a2-4001-b677-39d8950d3a33", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "227" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "56144706816e003877883aedde557092" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "460", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000178-0000000000000356-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "917a6a18-db90-4d6f-8a5e-ee474ff5aee0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a880d566-ebd2-49d7-8504-01bc593a86a3", + "Date": "Fri, 18 Feb 2022 19:12:43 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000179-0000000000000358-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ed4bfe74-1a9f-4464-a58c-a22878a01652", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d10df6c-bbb4-48c3-98e2-05a70a8a8239", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:43Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000180-0000000000000360-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "731b56e1-2583-4e37-92d5-770a4ee99322", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af63271d-ca4d-41fa-9bd1-5aaade9ae255", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:43Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000181-0000000000000362-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f5d67e7b-deb5-4c0e-a5c1-44756bf2d171", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4d5f8c9-5e60-46eb-bdbb-e9bf4f58242a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:45Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000182-0000000000000364-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0ab78a68-f6f2-43d4-85be-5e7019afa833", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af3f4fe8-ddd0-4f94-81b3-79626e75d3ec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:46Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000183-0000000000000366-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4f7061fb-e813-4832-9098-b3b1f53b5714", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb522865-0d2f-4595-babd-aff6c03d9d71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "86" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:49Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000184-0000000000000368-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f71f55d0-2c3c-4e72-812a-f15beaec85aa", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af8e8ed2-36c6-4e49-a377-4c20c8f1c34f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:49Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000185-0000000000000370-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "572cb847-b49c-48da-aaa7-1752f3037129", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72e9d379-92e5-479f-ad54-e116a1d82446", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "344" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:49Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000186-0000000000000372-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9a165ed9-e308-4353-ac34-5800e1cc65fa", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "992bf487-b6eb-4515-8654-d4dc35f31fdf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:49Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000187-0000000000000374-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b59ba298-588a-4728-b156-3900ca9071b3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ad23eb7-d1cd-4ca7-b395-0ba3eac6267a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:57Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:57.0744709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/01b7ab28-5c12-4a83-b41c-e0cae75a867d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000188-0000000000000376-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3a97d65a-14ff-462c-b1e3-b7f04ae433a9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea175287-10e9-46aa-9648-382d4c4619c8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "jobId": "01b7ab28-5c12-4a83-b41c-e0cae75a867d", + "lastUpdateDateTime": "2022-02-18T19:12:57Z", + "createdDateTime": "2022-02-18T19:12:42Z", + "expirationDateTime": "2022-02-19T19:12:42Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:45.4410892Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:46.3636709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:57.0744709Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json index 9bd2b2142ac8..da87f3877df8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json @@ -1,215 +1,763 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "72b3939f-f697-4f1d-8c8e-92b6224f89e5", - "date": "Sat, 23 Oct 2021 00:53:10 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "370" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:11Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "92adc4d2-6914-484d-917c-b54b4ddff4a9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:11Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "7b48e299-3fe8-4215-a2ab-fd66c820d590", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:13Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "485f2ddf-260a-45f9-b102-5a82dc35e1d8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "90" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:13Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "b28f9a99-c212-49b4-8685-476335565e65", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "100" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:17Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "4ea6fedc-7c98-4b8d-8e34-bee9c9e5e3e1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:18Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:18.973966Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "c8f1776e-83a0-4b92-8d44-0f09935ed0cd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "180" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:18Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:18.973966Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "51f11acc-a6c1-4d26-a541-cbb82ac21543", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "245" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:18Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:18.973966Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "67693c1b-14a0-4780-9a6a-267bfd583334", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "188" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:24Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:18.973966Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:24.8138105Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "bf527bb4-8d1e-4c1f-8b6d-388f7a7c3a21", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "567" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/36e914cc-2a48-4635-b23d-e04ec54a0a2d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"36e914cc-2a48-4635-b23d-e04ec54a0a2d\",\"lastUpdateDateTime\":\"2021-10-23T00:53:24Z\",\"createdDateTime\":\"2021-10-23T00:53:10Z\",\"expirationDateTime\":\"2021-10-24T00:53:10Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:18.973966Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:13.1708792Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:24.8138105Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "98f43202-06b6-456f-bbcc-4092db6c1a7c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "205" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5ec6fa67bc019ae3b40cab62e82473f9" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000155-0000000000000310-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "06052b55-20c3-4ec8-8979-ff7cf06deac2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d1f768da-d810-411f-809b-56683c9c2148", + "Date": "Fri, 18 Feb 2022 19:12:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "238" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000156-0000000000000312-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "87f06fe3-7b89-47af-929d-3b931884fbb7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f189376c-917c-4ec2-b5c6-e152822baa0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:14Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000157-0000000000000314-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3b4c9964-193c-46eb-8781-fcf3ca7fa6d2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c24922a7-6bbe-4646-a65b-e255ddc68d03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:14Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000158-0000000000000316-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "30780b29-923f-4b64-9c3d-6ae591188559", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90494a07-5511-4786-868f-211b867f8a14", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:15Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:15.8450026Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000159-0000000000000318-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4a726cbb-c551-4c49-8669-3adba371bc2b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "306b7d6e-e73c-4fce-9eb5-37827fdad19e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:15Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:15.8450026Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000160-0000000000000320-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4cb790b0-d553-4fc8-a43a-86f2806e5b3a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "734f8047-02bb-48e8-a607-ff709528deed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:15Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:15.8450026Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000161-0000000000000322-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d85ce300-f578-4377-a692-120c97271349", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c7d90d5-fc36-44c1-9650-56fd90a24ce1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:22Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:15.8450026Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:22.034971Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:21.65191Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6a37d015-8e5b-45f6-8a80-40530020971f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000162-0000000000000324-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ec907c17-e4a1-4997-b48e-cd6bc175d3ad", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1309d29c-dbe5-4d35-a1f4-de92b0371f99", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "790" + }, + "ResponseBody": { + "jobId": "6a37d015-8e5b-45f6-8a80-40530020971f", + "lastUpdateDateTime": "2022-02-18T19:12:22Z", + "createdDateTime": "2022-02-18T19:12:13Z", + "expirationDateTime": "2022-02-19T19:12:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:15.8450026Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:22.034971Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:21.65191Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json index fd337b4045f8..57c64c13112d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json @@ -1,177 +1,615 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze", - "query": {}, - "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "9616d9ae-0ace-4076-a972-0a58c19b70f7", - "date": "Sat, 23 Oct 2021 00:53:27 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "371" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:27Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "43e1c626-cf86-4b6f-a86e-fc4a8b5d6597", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:27Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"notStarted\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "3d9d5670-e7a4-4ebe-bda9-88e5e66434d4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:29Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "0fcde2ba-ee14-4ca2-8d7e-54fa6a17d308", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:30Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:30.1586734Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "5c5cf2c6-03f3-4680-98b2-a064e644a1be", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:33Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:30.1586734Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "62f8f0f5-e717-4f42-ba44-31ce48d8244f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "107" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:36Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"running\",\"errors\":[],\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:36.3765104Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:30.1586734Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "433183ee-9aa3-4479-81ac-b2296f79f487", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "235" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:36Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:36.3765104Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:30.1586734Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:36.7649379Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "38836f7b-a276-4e9e-a5aa-061562fcc180", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "368" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84032b6-9c4d-47d6-ac72-5841425218cf", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f84032b6-9c4d-47d6-ac72-5841425218cf\",\"lastUpdateDateTime\":\"2021-10-23T00:53:36Z\",\"createdDateTime\":\"2021-10-23T00:53:27Z\",\"expirationDateTime\":\"2021-10-24T00:53:27Z\",\"status\":\"succeeded\",\"errors\":[],\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:36.3765104Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:30.1586734Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-10-23T00:53:36.7649379Z\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "cc22b2a6-dbcd-46b3-8bde-01537a01d34e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:53:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "305" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6cd0e2da6fc16ac66e7c16052763e438" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000163-0000000000000326-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0abb91e1-386f-403c-b1f0-eeb73a4bd4a3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3d27bad2-80d1-422b-9869-2127e8f7b776", + "Date": "Fri, 18 Feb 2022 19:12:24 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4e468789-7233-4156-9391-c1a1eefc201f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "247" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4e468789-7233-4156-9391-c1a1eefc201f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000164-0000000000000328-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "286fbaaa-fdf5-4c28-91d9-7d949c906d5a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8127e8c7-3568-4ed0-b821-ab1a01524dab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "4e468789-7233-4156-9391-c1a1eefc201f", + "lastUpdateDateTime": "2022-02-18T19:12:24Z", + "createdDateTime": "2022-02-18T19:12:24Z", + "expirationDateTime": "2022-02-19T19:12:24Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4e468789-7233-4156-9391-c1a1eefc201f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000165-0000000000000330-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a410f6a5-c242-4bc7-b288-398e4d0fc7e3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ce278de8-4485-423e-8f15-0aac7b20cb72", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "4e468789-7233-4156-9391-c1a1eefc201f", + "lastUpdateDateTime": "2022-02-18T19:12:24Z", + "createdDateTime": "2022-02-18T19:12:24Z", + "expirationDateTime": "2022-02-19T19:12:24Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4e468789-7233-4156-9391-c1a1eefc201f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000166-0000000000000332-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b36bc6e7-4db2-406a-a4e4-35e7dfd44958", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15556582-31c1-4487-80be-da7eb8515ff1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": { + "jobId": "4e468789-7233-4156-9391-c1a1eefc201f", + "lastUpdateDateTime": "2022-02-18T19:12:26Z", + "createdDateTime": "2022-02-18T19:12:24Z", + "expirationDateTime": "2022-02-19T19:12:24Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:26.1807335Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:26.6548164Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4e468789-7233-4156-9391-c1a1eefc201f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000167-0000000000000334-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e3bc22d7-0b65-4b24-ba0c-1d0955e00946", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd8cca94-4acc-4828-acc0-e2c651224d0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "486" + }, + "ResponseBody": { + "jobId": "4e468789-7233-4156-9391-c1a1eefc201f", + "lastUpdateDateTime": "2022-02-18T19:12:27Z", + "createdDateTime": "2022-02-18T19:12:24Z", + "expirationDateTime": "2022-02-19T19:12:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:26.1807335Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:27.3809472Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:26.6548164Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4e468789-7233-4156-9391-c1a1eefc201f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000168-0000000000000336-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cec134be-df9b-4624-9846-dde43097dcc5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33ffac8c-f430-4839-a559-6ceacc8a6105", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:12:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "jobId": "4e468789-7233-4156-9391-c1a1eefc201f", + "lastUpdateDateTime": "2022-02-18T19:12:27Z", + "createdDateTime": "2022-02-18T19:12:24Z", + "expirationDateTime": "2022-02-19T19:12:24Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:26.1807335Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:27.3809472Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:12:26.6548164Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json index 8f627f7e7a48..a016cf4c5f9c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json @@ -1,103 +1,273 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"english\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "ad7af2d8-c9ae-426d-a02b-0588f13d0d18", - "date": "Mon, 29 Nov 2021 22:47:24 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/844d70af-caea-455c-a81e-69b840fba41f", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "165" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/844d70af-caea-455c-a81e-69b840fba41f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"844d70af-caea-455c-a81e-69b840fba41f\",\"lastUpdateDateTime\":\"2021-11-29T22:47:25Z\",\"createdDateTime\":\"2021-11-29T22:47:24Z\",\"expirationDateTime\":\"2021-11-30T22:47:24Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b7e2adb8-94e8-47c0-96f2-4e55637a13f6", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/844d70af-caea-455c-a81e-69b840fba41f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"844d70af-caea-455c-a81e-69b840fba41f\",\"lastUpdateDateTime\":\"2021-11-29T22:47:25Z\",\"createdDateTime\":\"2021-11-29T22:47:24Z\",\"expirationDateTime\":\"2021-11-30T22:47:24Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "111b91ad-66c8-4ddf-ad49-6ebd4027bd8b", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/844d70af-caea-455c-a81e-69b840fba41f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"844d70af-caea-455c-a81e-69b840fba41f\",\"lastUpdateDateTime\":\"2021-11-29T22:47:25Z\",\"createdDateTime\":\"2021-11-29T22:47:24Z\",\"expirationDateTime\":\"2021-11-30T22:47:24Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "0dd5c769-77e2-423d-98d0-bf2dc634c872", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/844d70af-caea-455c-a81e-69b840fba41f", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"844d70af-caea-455c-a81e-69b840fba41f\",\"lastUpdateDateTime\":\"2021-11-29T22:47:25Z\",\"createdDateTime\":\"2021-11-29T22:47:24Z\",\"expirationDateTime\":\"2021-11-30T22:47:24Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "dd4be054-7dc2-46bc-8f95-4c3f81587e49", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "07def3dae67a5c72becb5b01dbfb4cb5" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "116", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000307-0000000000000614-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a79bf3d5-9b8b-4942-bd5c-6d42bcb369e6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "english" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ae3a6917-25db-4384-947a-b18870949941", + "Date": "Fri, 18 Feb 2022 19:14:36 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f35c0669-2581-42d8-a26c-45d8f6dbef95", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f35c0669-2581-42d8-a26c-45d8f6dbef95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000308-0000000000000616-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b4908e8f-c705-49c8-92d9-2d17f9a5546c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "51e7b971-a4c8-41cd-ae28-b57f0df36cf9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f35c0669-2581-42d8-a26c-45d8f6dbef95", + "lastUpdateDateTime": "2022-02-18T19:14:36Z", + "createdDateTime": "2022-02-18T19:14:36Z", + "expirationDateTime": "2022-02-19T19:14:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f35c0669-2581-42d8-a26c-45d8f6dbef95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000309-0000000000000618-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "752dfff6-6fbf-4cb5-856f-de995b700fa3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c5b645c-b136-49a2-9bf1-68a44a46b1b6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f35c0669-2581-42d8-a26c-45d8f6dbef95", + "lastUpdateDateTime": "2022-02-18T19:14:36Z", + "createdDateTime": "2022-02-18T19:14:36Z", + "expirationDateTime": "2022-02-19T19:14:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f35c0669-2581-42d8-a26c-45d8f6dbef95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000310-0000000000000620-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "992f8b9c-04cf-4bea-b24d-585292f21ba8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "63cd6f0c-ca41-4792-b107-f04128bcd25c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "jobId": "f35c0669-2581-42d8-a26c-45d8f6dbef95", + "lastUpdateDateTime": "2022-02-18T19:14:36Z", + "createdDateTime": "2022-02-18T19:14:36Z", + "expirationDateTime": "2022-02-19T19:14:36Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f35c0669-2581-42d8-a26c-45d8f6dbef95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000311-0000000000000622-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "24dfe25c-d85e-4cd4-bcf2-6afd96cddd10", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6d47d70-3d7b-47b6-9722-d6de3d7603cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "jobId": "f35c0669-2581-42d8-a26c-45d8f6dbef95", + "lastUpdateDateTime": "2022-02-18T19:14:36Z", + "createdDateTime": "2022-02-18T19:14:36Z", + "expirationDateTime": "2022-02-19T19:14:36Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json index 80bdb85118f4..23e6c09aec0c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json @@ -1,103 +1,301 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "ec85482a-d6f0-4eec-85c9-e71707571c04", - "date": "Sat, 23 Oct 2021 00:55:31 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/02e3bb31-ea3d-4538-a9ee-516e99eb53f6", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "332" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/02e3bb31-ea3d-4538-a9ee-516e99eb53f6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"02e3bb31-ea3d-4538-a9ee-516e99eb53f6\",\"lastUpdateDateTime\":\"2021-10-23T00:55:32Z\",\"createdDateTime\":\"2021-10-23T00:55:31Z\",\"expirationDateTime\":\"2021-10-24T00:55:31Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "3b1c8d1a-e4a5-46c9-b36b-db11282e5620", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/02e3bb31-ea3d-4538-a9ee-516e99eb53f6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"02e3bb31-ea3d-4538-a9ee-516e99eb53f6\",\"lastUpdateDateTime\":\"2021-10-23T00:55:32Z\",\"createdDateTime\":\"2021-10-23T00:55:31Z\",\"expirationDateTime\":\"2021-10-24T00:55:31Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "aeb40c42-e76e-4acb-86b6-f5e8391e3598", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/02e3bb31-ea3d-4538-a9ee-516e99eb53f6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"02e3bb31-ea3d-4538-a9ee-516e99eb53f6\",\"lastUpdateDateTime\":\"2021-10-23T00:55:32Z\",\"createdDateTime\":\"2021-10-23T00:55:31Z\",\"expirationDateTime\":\"2021-10-24T00:55:31Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "42fefd63-1458-4e8f-aaa6-95404b1a11fa", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/02e3bb31-ea3d-4538-a9ee-516e99eb53f6", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"02e3bb31-ea3d-4538-a9ee-516e99eb53f6\",\"lastUpdateDateTime\":\"2021-10-23T00:55:32Z\",\"createdDateTime\":\"2021-10-23T00:55:31Z\",\"expirationDateTime\":\"2021-10-24T00:55:31Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "fb853e5b-9ba4-4f5c-8ea9-31954ef86d52", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "422fa2aae090de9b8ef49ad07a6940c1" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "180", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000251-0000000000000502-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6d889121-b1ac-4762-945d-9d0fbe82759a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2c2642ff-4671-45b3-9238-45f18b808f6c", + "Date": "Fri, 18 Feb 2022 19:13:53 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5b5a1cc6-55ee-421a-ac45-89c39e7784bd", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5b5a1cc6-55ee-421a-ac45-89c39e7784bd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000252-0000000000000504-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "eff64aea-a9c0-40cb-b544-8c36f423d6ce", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f24a8cbe-daae-4c65-b7c8-458c5a5139cc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "5b5a1cc6-55ee-421a-ac45-89c39e7784bd", + "lastUpdateDateTime": "2022-02-18T19:13:54Z", + "createdDateTime": "2022-02-18T19:13:54Z", + "expirationDateTime": "2022-02-19T19:13:54Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5b5a1cc6-55ee-421a-ac45-89c39e7784bd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000253-0000000000000506-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9701ef8d-7a35-48a7-9432-020972e838d4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4bece2e0-610a-4f77-879c-a3c31c106817", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "5b5a1cc6-55ee-421a-ac45-89c39e7784bd", + "lastUpdateDateTime": "2022-02-18T19:13:54Z", + "createdDateTime": "2022-02-18T19:13:54Z", + "expirationDateTime": "2022-02-19T19:13:54Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5b5a1cc6-55ee-421a-ac45-89c39e7784bd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000254-0000000000000508-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6b62de98-2d80-4558-8ce1-5fcd1ab147a8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c97c2afe-c949-4ef7-9f22-5f3e3042c326", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "97" + }, + "ResponseBody": { + "jobId": "5b5a1cc6-55ee-421a-ac45-89c39e7784bd", + "lastUpdateDateTime": "2022-02-18T19:13:54Z", + "createdDateTime": "2022-02-18T19:13:54Z", + "expirationDateTime": "2022-02-19T19:13:54Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/5b5a1cc6-55ee-421a-ac45-89c39e7784bd?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000255-0000000000000510-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "954415aa-08a0-4f34-a1d1-8a4d9bb42240", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "63e67bba-e161-4066-88cc-f714034b7169", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "5b5a1cc6-55ee-421a-ac45-89c39e7784bd", + "lastUpdateDateTime": "2022-02-18T19:13:54Z", + "createdDateTime": "2022-02-18T19:13:54Z", + "expirationDateTime": "2022-02-19T19:13:54Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json index a9ed464fc190..1396cd952c1d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json @@ -1,122 +1,246 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"3\",\"text\":\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "ead0851a-c8fe-48c3-b1fd-9006fd05aca2", - "date": "Mon, 29 Nov 2021 22:47:27 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d3eeae7b-c1ca-4056-85c9-4e219035b7cb", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d3eeae7b-c1ca-4056-85c9-4e219035b7cb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d3eeae7b-c1ca-4056-85c9-4e219035b7cb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:27Z\",\"createdDateTime\":\"2021-11-29T22:47:27Z\",\"expirationDateTime\":\"2021-11-30T22:47:27Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "f393f1b8-7530-4fd9-80a4-e376e2d8e620", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d3eeae7b-c1ca-4056-85c9-4e219035b7cb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d3eeae7b-c1ca-4056-85c9-4e219035b7cb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:27Z\",\"createdDateTime\":\"2021-11-29T22:47:27Z\",\"expirationDateTime\":\"2021-11-30T22:47:27Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "4692c9ea-dd6d-46ab-82cb-6974c0d9ef4b", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d3eeae7b-c1ca-4056-85c9-4e219035b7cb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d3eeae7b-c1ca-4056-85c9-4e219035b7cb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:27Z\",\"createdDateTime\":\"2021-11-29T22:47:27Z\",\"expirationDateTime\":\"2021-11-30T22:47:27Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "fe139874-49f0-4839-a060-c350150bb888", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d3eeae7b-c1ca-4056-85c9-4e219035b7cb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d3eeae7b-c1ca-4056-85c9-4e219035b7cb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:30Z\",\"createdDateTime\":\"2021-11-29T22:47:27Z\",\"expirationDateTime\":\"2021-11-30T22:47:27Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[{\"code\":\"DocumentTruncated\",\"message\":\"Document is large and must be split to be processed; relations across splits may not be caught by the model\"}]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b15a255b-deff-4433-aef8-c21375aea3ee", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d3eeae7b-c1ca-4056-85c9-4e219035b7cb", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d3eeae7b-c1ca-4056-85c9-4e219035b7cb\",\"lastUpdateDateTime\":\"2021-11-29T22:47:30Z\",\"createdDateTime\":\"2021-11-29T22:47:27Z\",\"expirationDateTime\":\"2021-11-30T22:47:27Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[{\"code\":\"DocumentTruncated\",\"message\":\"Document is large and must be split to be processed; relations across splits may not be caught by the model\"}]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "da570723-18dc-4368-9dbd-dd1a86a1757c", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 29 Nov 2021 22:47:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "51f3134eb78aedd923e232bba2898f8d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "5157", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000312-0000000000000624-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3992e12b-19bf-4699-886a-7b74d260fb7a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "3", + "text": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "43b4b8f5-342f-4145-8499-4c3d775d6d62", + "Date": "Fri, 18 Feb 2022 19:14:39 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36307721-eb8a-4f26-89e3-dc7c5edb6c30", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36307721-eb8a-4f26-89e3-dc7c5edb6c30?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000313-0000000000000626-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3fce09f0-eb5b-441a-be47-a739bdb27655", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7cc8d2ba-8607-4546-a704-0e168fbf31dd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "36307721-eb8a-4f26-89e3-dc7c5edb6c30", + "lastUpdateDateTime": "2022-02-18T19:14:39Z", + "createdDateTime": "2022-02-18T19:14:39Z", + "expirationDateTime": "2022-02-19T19:14:39Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36307721-eb8a-4f26-89e3-dc7c5edb6c30?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000314-0000000000000628-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a58f4dcb-1755-45fa-88c9-d7b4e4b8db62", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f969bafe-081b-4332-89df-ee8a2052c8d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "36307721-eb8a-4f26-89e3-dc7c5edb6c30", + "lastUpdateDateTime": "2022-02-18T19:14:39Z", + "createdDateTime": "2022-02-18T19:14:39Z", + "expirationDateTime": "2022-02-19T19:14:39Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36307721-eb8a-4f26-89e3-dc7c5edb6c30?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000315-0000000000000630-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4df2d727-829a-4905-a2ea-eb8d06b039f6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6e453b45-6eaa-4828-8ba1-fcdacd015df8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "36307721-eb8a-4f26-89e3-dc7c5edb6c30", + "lastUpdateDateTime": "2022-02-18T19:14:41Z", + "createdDateTime": "2022-02-18T19:14:39Z", + "expirationDateTime": "2022-02-19T19:14:39Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36307721-eb8a-4f26-89e3-dc7c5edb6c30?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000316-0000000000000632-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b88cdb0d-769d-4787-a118-30b0885bfac4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd2dba19-a946-41f6-a7f0-05ff5eb70551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "36307721-eb8a-4f26-89e3-dc7c5edb6c30", + "lastUpdateDateTime": "2022-02-18T19:14:41Z", + "createdDateTime": "2022-02-18T19:14:39Z", + "expirationDateTime": "2022-02-19T19:14:39Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json index e03ad4a7e6a3..5e4d70495dad 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json @@ -1,46 +1,95 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "90679c22-822a-4f82-9415-5410fdd7c3ce", - "date": "Sat, 23 Oct 2021 00:56:18 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c13668e6-6270-4e6a-b746-8a6e756f724b", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/c13668e6-6270-4e6a-b746-8a6e756f724b", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c13668e6-6270-4e6a-b746-8a6e756f724b\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b24aa2bb-b4a2-43b9-b997-9c57cfc989e5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "22188dd88cd7873245aff997830b38f3" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000318-0000000000000636-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "860210cc-e6f5-41e1-aeb4-ec9694c3dd4c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3d0319c2-6d61-418e-a5bc-90b3a5f0694b", + "Date": "Fri, 18 Feb 2022 19:14:42 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2175dc2e-1627-4250-a170-bd332ecc02f4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "233" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/2175dc2e-1627-4250-a170-bd332ecc02f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000319-0000000000000638-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c9e25755-6c03-482b-9f44-c0a7eb9d741b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf960f4d-fcf0-4acb-afac-12c0736d1483", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2175dc2e-1627-4250-a170-bd332ecc02f4", + "lastUpdateDateTime": "2022-02-18T19:14:43Z", + "createdDateTime": "2022-02-18T19:14:43Z", + "expirationDateTime": "2022-02-19T19:14:43Z", + "status": "notStarted", + "errors": [] + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json index 7b86b5acef7f..2a93d5bb7037 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json @@ -1,103 +1,236 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This won't actually create a warning :'(\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "4823f06b-8ed8-4236-bca3-ac829b9b8861", - "date": "Sat, 23 Oct 2021 00:55:36 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "267" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa\",\"lastUpdateDateTime\":\"2021-10-23T00:55:36Z\",\"createdDateTime\":\"2021-10-23T00:55:35Z\",\"expirationDateTime\":\"2021-10-24T00:55:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "7ad6afbe-aae3-4c97-abae-843c23fd5072", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa\",\"lastUpdateDateTime\":\"2021-10-23T00:55:36Z\",\"createdDateTime\":\"2021-10-23T00:55:35Z\",\"expirationDateTime\":\"2021-10-24T00:55:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a4cb36ce-017a-434e-a3ce-a7d3bf5128c3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:36 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa\",\"lastUpdateDateTime\":\"2021-10-23T00:55:36Z\",\"createdDateTime\":\"2021-10-23T00:55:35Z\",\"expirationDateTime\":\"2021-10-24T00:55:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "ce8913ad-c42e-4077-8d66-888a5d7b3375", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"0522dbd3-4fb8-4fd8-98a1-39a1a39f56fa\",\"lastUpdateDateTime\":\"2021-10-23T00:55:36Z\",\"createdDateTime\":\"2021-10-23T00:55:35Z\",\"expirationDateTime\":\"2021-10-24T00:55:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "14693d47-2b41-4033-84b6-d339f6540dd7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4d8a17643c0e840c231420df37a10a29" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "76", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000258-0000000000000516-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b89d7c52-2839-4535-bfc6-8869a2d92ce9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This won\u0027t actually create a warning :\u0027(" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4441e6b4-9224-484e-b6e7-4b7fee2f5255", + "Date": "Fri, 18 Feb 2022 19:13:58 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/070b84ac-fcee-47ac-ab5b-4cc2317109d0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/070b84ac-fcee-47ac-ab5b-4cc2317109d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000259-0000000000000518-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c64f423e-aefe-468e-a16b-bc1a10fa8d36", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0a2d0c6a-ec5d-4feb-807f-ce15be4cc4b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "070b84ac-fcee-47ac-ab5b-4cc2317109d0", + "lastUpdateDateTime": "2022-02-18T19:13:58Z", + "createdDateTime": "2022-02-18T19:13:58Z", + "expirationDateTime": "2022-02-19T19:13:58Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/070b84ac-fcee-47ac-ab5b-4cc2317109d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000260-0000000000000520-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "aa4835b8-cab1-40fc-9b31-3833d178df91", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e3c6baeb-ea98-477c-a24f-5eb2b6b2f764", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "070b84ac-fcee-47ac-ab5b-4cc2317109d0", + "lastUpdateDateTime": "2022-02-18T19:13:59Z", + "createdDateTime": "2022-02-18T19:13:58Z", + "expirationDateTime": "2022-02-19T19:13:58Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/070b84ac-fcee-47ac-ab5b-4cc2317109d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000261-0000000000000522-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "4d36a5be-917c-41e4-b401-fa793f449d42", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6cea099d-fadd-4df8-92cb-e3d255c57fc8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "jobId": "070b84ac-fcee-47ac-ab5b-4cc2317109d0", + "lastUpdateDateTime": "2022-02-18T19:13:59Z", + "createdDateTime": "2022-02-18T19:13:58Z", + "expirationDateTime": "2022-02-19T19:13:58Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/070b84ac-fcee-47ac-ab5b-4cc2317109d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000262-0000000000000524-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9d3841e8-ea3b-4bf7-a38f-7a4cd9988868", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "efbc4b63-df41-4c65-af35-e78f3abf15a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" + }, + "ResponseBody": { + "jobId": "070b84ac-fcee-47ac-ab5b-4cc2317109d0", + "lastUpdateDateTime": "2022-02-18T19:13:59Z", + "createdDateTime": "2022-02-18T19:13:58Z", + "expirationDateTime": "2022-02-19T19:13:58Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json index eacafa1867d6..63e4dc7f7bcd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json @@ -1,27 +1,61 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"hello world\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at.\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Request contains duplicated Ids. Make sure each document has a unique Id.\"}}}", - "responseHeaders": { - "apim-request-id": "9946afe3-53b2-4431-bb0b-66684ea3fd45", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5a1a51d510e78fbb9637596af3eed13e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "106", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000317-0000000000000634-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f1443449-53fa-457e-8098-94375ca626c8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "hello world" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at." + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "aa78d261-9e61-49c9-8e85-cdfae4a7c955", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Request contains duplicated Ids. Make sure each document has a unique Id." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json index 3dac1ce4d9eb..03ac41ff29d4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json @@ -1,198 +1,1619 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"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\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "c64ac695-57a2-4b9f-abfc-2ae50f43bdcc", - "date": "Sat, 23 Oct 2021 00:55:11 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:12Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "32fbcaf4-d591-4484-bccc-76b0fe36b023", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:12Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d4ac3b5f-0629-46b0-a855-f10d4d49966d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:12Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "671c2f33-dc8c-472d-b3c4-17bf7b1dc5d0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:12Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "63ff8192-d731-4fc3-90ad-94f7520675ae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:16 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:12Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "912236f0-9dd0-40e6-9111-24d5166ae792", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:18 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:20Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "420d12c2-0c4f-49e7-b4cb-b5ba8323a279", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:20Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "46ad4442-4d13-4308-8b4e-19dbcf9f515e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:23Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"succeeded\",\"errors\":[],\"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\":\"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\":\"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\":1.0,\"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\":\"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_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"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\":\"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.9,\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "ec632bd8-28df-48f1-ae9b-10ba3dde9a23", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"ee6c5ba6-5c6b-4d42-a04f-b9669d3d90c2\",\"lastUpdateDateTime\":\"2021-10-23T00:55:23Z\",\"createdDateTime\":\"2021-10-23T00:55:12Z\",\"expirationDateTime\":\"2021-10-24T00:55:12Z\",\"status\":\"succeeded\",\"errors\":[],\"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\":\"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\":\"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\":1.0,\"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\":\"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_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"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\":\"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.9,\"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\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "67a1e7ee-a258-42cc-a3f6-dfd9907b5916", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cc4d87871f3923d074a5e1b6cb77e07e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000236-0000000000000472-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b679ce6d-02fd-40e6-a5da-2308b18afd24", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "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" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5b52bf3c-7fcc-499b-867f-8b6a88685ee2", + "Date": "Fri, 18 Feb 2022 19:13:43 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f28c295-c491-4815-a1be-22a52bf88c3e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f28c295-c491-4815-a1be-22a52bf88c3e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000237-0000000000000474-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "37308a16-fcae-4891-99ef-cab312efc724", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a04f57c-871e-4381-b033-17bfa65dc020", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "jobId": "6f28c295-c491-4815-a1be-22a52bf88c3e", + "lastUpdateDateTime": "2022-02-18T19:13:44Z", + "createdDateTime": "2022-02-18T19:13:44Z", + "expirationDateTime": "2022-02-19T19:13:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f28c295-c491-4815-a1be-22a52bf88c3e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000238-0000000000000476-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5a05d585-c37d-4fdc-8860-ca2488eac8f6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1236cd2-25ae-4030-a55f-17936a5013e7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "6f28c295-c491-4815-a1be-22a52bf88c3e", + "lastUpdateDateTime": "2022-02-18T19:13:44Z", + "createdDateTime": "2022-02-18T19:13:44Z", + "expirationDateTime": "2022-02-19T19:13:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f28c295-c491-4815-a1be-22a52bf88c3e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000239-0000000000000478-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6fb9261a-f474-4638-97de-e92db47aca32", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d5ad34a7-9218-4d9d-8d30-6029300c1166", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "6f28c295-c491-4815-a1be-22a52bf88c3e", + "lastUpdateDateTime": "2022-02-18T19:13:44Z", + "createdDateTime": "2022-02-18T19:13:44Z", + "expirationDateTime": "2022-02-19T19:13:44Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f28c295-c491-4815-a1be-22a52bf88c3e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000240-0000000000000480-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0837699a-d143-468e-84af-6b19c2fc1dda", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89195afe-92bf-44a2-9b9b-6c7befaff0dc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "6f28c295-c491-4815-a1be-22a52bf88c3e", + "lastUpdateDateTime": "2022-02-18T19:13:44Z", + "createdDateTime": "2022-02-18T19:13:44Z", + "expirationDateTime": "2022-02-19T19:13:44Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json index 875843c7af3c..e1e087f4b1da 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json @@ -1,103 +1,458 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "UnicodeCodePoint" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "84e82b4c-056d-44ba-ba12-9a73449c2b97", - "date": "Sat, 23 Oct 2021 00:56:34 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e49e613d-61b5-460e-8e3f-04c402b6acc7", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "388" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e49e613d-61b5-460e-8e3f-04c402b6acc7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e49e613d-61b5-460e-8e3f-04c402b6acc7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:35Z\",\"createdDateTime\":\"2021-10-23T00:56:35Z\",\"expirationDateTime\":\"2021-10-24T00:56:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "91210a89-da94-43b1-a435-9b0c78aa7062", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e49e613d-61b5-460e-8e3f-04c402b6acc7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e49e613d-61b5-460e-8e3f-04c402b6acc7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:35Z\",\"createdDateTime\":\"2021-10-23T00:56:35Z\",\"expirationDateTime\":\"2021-10-24T00:56:35Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "2abaa5cc-e9cb-4abc-b80d-1d59be104695", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e49e613d-61b5-460e-8e3f-04c402b6acc7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e49e613d-61b5-460e-8e3f-04c402b6acc7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:36Z\",\"createdDateTime\":\"2021-10-23T00:56:35Z\",\"expirationDateTime\":\"2021-10-24T00:56:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "dfc05d87-db3f-4b6c-9fbe-58cd5a2f81fb", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e49e613d-61b5-460e-8e3f-04c402b6acc7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e49e613d-61b5-460e-8e3f-04c402b6acc7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:36Z\",\"createdDateTime\":\"2021-10-23T00:56:35Z\",\"expirationDateTime\":\"2021-10-24T00:56:35Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "e0b87226-ee93-4baf-bcb2-4c546b65986b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3a4d4b61449c4b62316d886bdd39c2af" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000329-0000000000000658-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a0ec8607-973a-4c1b-8dfa-4bf0c1147645", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "af58ef78-206d-453e-bf71-2b3006e0f0be", + "Date": "Fri, 18 Feb 2022 19:14:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/268092f8-7f47-453f-9833-d98b6160383d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "148" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/268092f8-7f47-453f-9833-d98b6160383d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000330-0000000000000660-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b8ffe39e-5e84-49fc-ac56-b55131e89d95", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "433e5e9a-056e-44c5-b874-2d46e6ce17f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "268092f8-7f47-453f-9833-d98b6160383d", + "lastUpdateDateTime": "2022-02-18T19:14:50Z", + "createdDateTime": "2022-02-18T19:14:50Z", + "expirationDateTime": "2022-02-19T19:14:50Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/268092f8-7f47-453f-9833-d98b6160383d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000331-0000000000000662-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fb5449fc-6d1e-4872-9e55-c4c41d21bf6f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "68b581d4-3bda-4cfb-bdfa-cce418963a90", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "268092f8-7f47-453f-9833-d98b6160383d", + "lastUpdateDateTime": "2022-02-18T19:14:50Z", + "createdDateTime": "2022-02-18T19:14:50Z", + "expirationDateTime": "2022-02-19T19:14:50Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/268092f8-7f47-453f-9833-d98b6160383d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000332-0000000000000664-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6e6e83b2-5027-4873-8ee7-844c0de44ae1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd691861-4033-484c-acf7-c50a2aa16486", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "jobId": "268092f8-7f47-453f-9833-d98b6160383d", + "lastUpdateDateTime": "2022-02-18T19:14:50Z", + "createdDateTime": "2022-02-18T19:14:50Z", + "expirationDateTime": "2022-02-19T19:14:50Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json index a954b0f01ab8..3eb7dc1552f1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json @@ -1,103 +1,499 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "83abee7d-891d-4391-a0c6-d04d5389c1b2", - "date": "Sat, 23 Oct 2021 00:56:32 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/34c3eb7d-52d8-40e7-b299-d494a7a7aed7", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "337" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/34c3eb7d-52d8-40e7-b299-d494a7a7aed7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"34c3eb7d-52d8-40e7-b299-d494a7a7aed7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:32Z\",\"createdDateTime\":\"2021-10-23T00:56:32Z\",\"expirationDateTime\":\"2021-10-24T00:56:32Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "c0b6f157-1627-4d2c-a6a2-432de2907f33", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/34c3eb7d-52d8-40e7-b299-d494a7a7aed7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"34c3eb7d-52d8-40e7-b299-d494a7a7aed7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:32Z\",\"createdDateTime\":\"2021-10-23T00:56:32Z\",\"expirationDateTime\":\"2021-10-24T00:56:32Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "cbe03c24-cc4f-41d8-8f9f-240716362afd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/34c3eb7d-52d8-40e7-b299-d494a7a7aed7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"34c3eb7d-52d8-40e7-b299-d494a7a7aed7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:33Z\",\"createdDateTime\":\"2021-10-23T00:56:32Z\",\"expirationDateTime\":\"2021-10-24T00:56:32Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "cbccf8c4-288d-46de-8a3d-158b473978be", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "186" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/34c3eb7d-52d8-40e7-b299-d494a7a7aed7", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"34c3eb7d-52d8-40e7-b299-d494a7a7aed7\",\"lastUpdateDateTime\":\"2021-10-23T00:56:33Z\",\"createdDateTime\":\"2021-10-23T00:56:32Z\",\"expirationDateTime\":\"2021-10-24T00:56:32Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "5bf1a30a-037a-465a-bf8b-e7b1a053c373", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d47462d4e9b472ba12db5c090d1db876" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000324-0000000000000648-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "168fe13b-2300-4a02-b52a-cd8cce611425", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9bd27310-ac42-4d91-805f-f32577b55eba", + "Date": "Fri, 18 Feb 2022 19:14:46 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/68403dbd-3498-4fe0-9fec-65e1f2bb6495", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/68403dbd-3498-4fe0-9fec-65e1f2bb6495?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000325-0000000000000650-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c01d64a7-f480-45cf-96f4-9dda8fb89d72", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c7ec76cc-3bfc-4e8e-a596-1a1139104c37", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "68403dbd-3498-4fe0-9fec-65e1f2bb6495", + "lastUpdateDateTime": "2022-02-18T19:14:47Z", + "createdDateTime": "2022-02-18T19:14:46Z", + "expirationDateTime": "2022-02-19T19:14:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/68403dbd-3498-4fe0-9fec-65e1f2bb6495?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000326-0000000000000652-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "788841f3-e504-4811-96c6-975ac9eefec6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9f2110b-2704-4ad1-b703-22052226628a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "68403dbd-3498-4fe0-9fec-65e1f2bb6495", + "lastUpdateDateTime": "2022-02-18T19:14:47Z", + "createdDateTime": "2022-02-18T19:14:46Z", + "expirationDateTime": "2022-02-19T19:14:46Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/68403dbd-3498-4fe0-9fec-65e1f2bb6495?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000327-0000000000000654-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c4897fe4-d5fa-449b-9574-aa8575955dee", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f44e15b-3c98-4412-b2aa-6edb9b33918c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "68403dbd-3498-4fe0-9fec-65e1f2bb6495", + "lastUpdateDateTime": "2022-02-18T19:14:47Z", + "createdDateTime": "2022-02-18T19:14:46Z", + "expirationDateTime": "2022-02-19T19:14:46Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/68403dbd-3498-4fe0-9fec-65e1f2bb6495?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000328-0000000000000656-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "18d49288-3b0a-481e-b090-4a49486d054c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bd6ded37-d771-4827-8219-e41fd93517f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "68403dbd-3498-4fe0-9fec-65e1f2bb6495", + "lastUpdateDateTime": "2022-02-18T19:14:47Z", + "createdDateTime": "2022-02-18T19:14:46Z", + "expirationDateTime": "2022-02-19T19:14:46Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json index d9198d62f493..3f1bc9f19cdf 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json @@ -1,103 +1,986 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "b8180d97-0730-4df9-8e6f-c3f774ccf9fa", - "date": "Sat, 23 Oct 2021 00:55:25 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/fc4e938a-d8af-461b-b569-4fb8d151262a", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "264" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/fc4e938a-d8af-461b-b569-4fb8d151262a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fc4e938a-d8af-461b-b569-4fb8d151262a\",\"lastUpdateDateTime\":\"2021-10-23T00:55:25Z\",\"createdDateTime\":\"2021-10-23T00:55:25Z\",\"expirationDateTime\":\"2021-10-24T00:55:25Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b3863814-f3d6-4954-8723-e052364e7a04", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/fc4e938a-d8af-461b-b569-4fb8d151262a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fc4e938a-d8af-461b-b569-4fb8d151262a\",\"lastUpdateDateTime\":\"2021-10-23T00:55:25Z\",\"createdDateTime\":\"2021-10-23T00:55:25Z\",\"expirationDateTime\":\"2021-10-24T00:55:25Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a62a07a5-7981-4c18-aa31-3d43b9d9f6ad", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/fc4e938a-d8af-461b-b569-4fb8d151262a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fc4e938a-d8af-461b-b569-4fb8d151262a\",\"lastUpdateDateTime\":\"2021-10-23T00:55:26Z\",\"createdDateTime\":\"2021-10-23T00:55:25Z\",\"expirationDateTime\":\"2021-10-24T00:55:25Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "3bd82885-94f7-499a-9748-7c73c08edb51", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/fc4e938a-d8af-461b-b569-4fb8d151262a", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"fc4e938a-d8af-461b-b569-4fb8d151262a\",\"lastUpdateDateTime\":\"2021-10-23T00:55:26Z\",\"createdDateTime\":\"2021-10-23T00:55:25Z\",\"expirationDateTime\":\"2021-10-24T00:55:25Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b68909d0-e038-4696-b671-8fc20e091b66", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "69614f61c6917237913585d6d9c8c593" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000241-0000000000000482-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "7241f390-4e6d-4ebb-86c4-e515368e34ac", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "fc98a54f-d7d4-43ef-ad7f-5018acf790f6", + "Date": "Fri, 18 Feb 2022 19:13:46 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/868a4e66-ab45-43fa-b415-45857ba4a0b7", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/868a4e66-ab45-43fa-b415-45857ba4a0b7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000242-0000000000000484-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "220638f8-1d2f-468b-8df7-e36ecfc66a62", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c796e5a-54db-4ef7-bfd9-fce5e50dc289", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "868a4e66-ab45-43fa-b415-45857ba4a0b7", + "lastUpdateDateTime": "2022-02-18T19:13:47Z", + "createdDateTime": "2022-02-18T19:13:47Z", + "expirationDateTime": "2022-02-19T19:13:47Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/868a4e66-ab45-43fa-b415-45857ba4a0b7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000243-0000000000000486-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bf619095-be70-4e35-8ed5-71aa95848bb5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ee2e5df-5413-4dcf-b1c0-3d495e3b1d61", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "868a4e66-ab45-43fa-b415-45857ba4a0b7", + "lastUpdateDateTime": "2022-02-18T19:13:47Z", + "createdDateTime": "2022-02-18T19:13:47Z", + "expirationDateTime": "2022-02-19T19:13:47Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/868a4e66-ab45-43fa-b415-45857ba4a0b7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000244-0000000000000488-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b99450fd-cf82-4632-943b-050cd6984c50", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "341127f3-39cf-46fd-aa17-76862f90c44b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "868a4e66-ab45-43fa-b415-45857ba4a0b7", + "lastUpdateDateTime": "2022-02-18T19:13:47Z", + "createdDateTime": "2022-02-18T19:13:47Z", + "expirationDateTime": "2022-02-19T19:13:47Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/868a4e66-ab45-43fa-b415-45857ba4a0b7?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000245-0000000000000490-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c9f0c1f5-61c6-491c-bc5e-3fe1a83ee579", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1a4b6c7a-1106-473b-90bb-7c65a49a87ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "233" + }, + "ResponseBody": { + "jobId": "868a4e66-ab45-43fa-b415-45857ba4a0b7", + "lastUpdateDateTime": "2022-02-18T19:13:47Z", + "createdDateTime": "2022-02-18T19:13:47Z", + "expirationDateTime": "2022-02-19T19:13:47Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json index 7210b933f518..edbd81d317e5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json @@ -1,274 +1,986 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "3f0d1213-e091-426b-9fd3-1a249fb0c0d3", - "date": "Sat, 23 Oct 2021 00:54:50 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "216" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:54:50Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0caf2695-b289-41ed-9fb7-fbfc1d35f1de", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:54:50Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "de7dd79b-78ee-4b45-915b-aabdd70271d3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:54:50Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "664318f0-16de-4669-961a-257fcfbf90e0", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:54:50Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "86162f0a-69ef-42d6-a462-19849e893bf7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:54:50Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0533ea2d-b499-4cc2-a52f-1fefa007de14", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:54:50Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b98e513a-0b9e-40df-8b41-3afa60d3eb44", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:54:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:01Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "f7d21273-910b-4269-8946-abd47544f384", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:01Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a609a697-3a23-476e-b549-9398c7f3aa57", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:01Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1e9a6c22-cdab-47ae-b8ef-3b52bbeeddec", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:01Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "3acd4192-746f-4459-9e74-62f7da0def81", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:01Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "3930bd4c-22ed-4708-968f-6df5a56c5fd1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:09 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "27" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:09Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b13c8e6e-ddc2-47d5-bb3b-4ce1abd324e1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/19e59d8c-5a16-48a0-bf77-b455cee01fb4", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"19e59d8c-5a16-48a0-bf77-b455cee01fb4\",\"lastUpdateDateTime\":\"2021-10-23T00:55:09Z\",\"createdDateTime\":\"2021-10-23T00:54:50Z\",\"expirationDateTime\":\"2021-10-24T00:54:50Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "0af84ccc-ac2a-4bd5-84d3-cd7991332c2d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "74" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3539cc6e492731ad933d3d63d2719d0e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000231-0000000000000462-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d1d49628-47f0-49c7-83f8-f280b5179b63", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "1", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "75fb92c5-602e-46e8-9f89-03e5875c0094", + "Date": "Fri, 18 Feb 2022 19:13:40 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/fb891402-a977-4c66-8385-7b5ea7eab80b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/fb891402-a977-4c66-8385-7b5ea7eab80b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000232-0000000000000464-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a1b121e1-6581-4f9c-8b5e-19dcec2ef589", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3e19086-241d-438c-8e0f-01dcace1676e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "fb891402-a977-4c66-8385-7b5ea7eab80b", + "lastUpdateDateTime": "2022-02-18T19:13:40Z", + "createdDateTime": "2022-02-18T19:13:40Z", + "expirationDateTime": "2022-02-19T19:13:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/fb891402-a977-4c66-8385-7b5ea7eab80b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000233-0000000000000466-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0483d0f0-a16b-4702-a4af-d6ce1cbb8971", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be15facc-3396-4570-9285-cb1b41e5c1b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "fb891402-a977-4c66-8385-7b5ea7eab80b", + "lastUpdateDateTime": "2022-02-18T19:13:41Z", + "createdDateTime": "2022-02-18T19:13:40Z", + "expirationDateTime": "2022-02-19T19:13:40Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/fb891402-a977-4c66-8385-7b5ea7eab80b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000234-0000000000000468-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "25bb343b-21af-44c2-baec-fe3736843b99", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f30a427-28b6-469d-8eec-33652c7ba4da", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "fb891402-a977-4c66-8385-7b5ea7eab80b", + "lastUpdateDateTime": "2022-02-18T19:13:41Z", + "createdDateTime": "2022-02-18T19:13:40Z", + "expirationDateTime": "2022-02-19T19:13:40Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/fb891402-a977-4c66-8385-7b5ea7eab80b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000235-0000000000000470-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a8faef9f-fa7f-487c-91c9-44a5367747cf", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b895d712-85e0-4e5e-bf0a-eb8d703db19f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" + }, + "ResponseBody": { + "jobId": "fb891402-a977-4c66-8385-7b5ea7eab80b", + "lastUpdateDateTime": "2022-02-18T19:13:41Z", + "createdDateTime": "2022-02-18T19:13:40Z", + "expirationDateTime": "2022-02-19T19:13:40Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json index 0b9ac22580cf..ce06a1f3c885 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json @@ -1,103 +1,247 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "44a961b5-9afb-4dd4-a3d0-484be74c12be", - "date": "Sat, 23 Oct 2021 00:56:11 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/de5a380f-5452-4a9f-ae7c-ac7792b4a374", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "274" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/de5a380f-5452-4a9f-ae7c-ac7792b4a374", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"de5a380f-5452-4a9f-ae7c-ac7792b4a374\",\"lastUpdateDateTime\":\"2021-10-23T00:56:11Z\",\"createdDateTime\":\"2021-10-23T00:56:10Z\",\"expirationDateTime\":\"2021-10-24T00:56:10Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1248e0dc-ab03-4cd2-aaf4-a42840d839ab", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/de5a380f-5452-4a9f-ae7c-ac7792b4a374", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"de5a380f-5452-4a9f-ae7c-ac7792b4a374\",\"lastUpdateDateTime\":\"2021-10-23T00:56:11Z\",\"createdDateTime\":\"2021-10-23T00:56:10Z\",\"expirationDateTime\":\"2021-10-24T00:56:10Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "499db806-1ae2-486b-b2a9-f171555ee56a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/de5a380f-5452-4a9f-ae7c-ac7792b4a374", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"de5a380f-5452-4a9f-ae7c-ac7792b4a374\",\"lastUpdateDateTime\":\"2021-10-23T00:56:11Z\",\"createdDateTime\":\"2021-10-23T00:56:10Z\",\"expirationDateTime\":\"2021-10-24T00:56:10Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b744f92c-39de-468e-b341-4ea1e1ddf12b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/de5a380f-5452-4a9f-ae7c-ac7792b4a374", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"de5a380f-5452-4a9f-ae7c-ac7792b4a374\",\"lastUpdateDateTime\":\"2021-10-23T00:56:11Z\",\"createdDateTime\":\"2021-10-23T00:56:10Z\",\"expirationDateTime\":\"2021-10-24T00:56:10Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "4331b88d-c366-4611-b5e0-9c4c0c3db26e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7fe28fb1cf9568039be008ba4f6aae88" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000297-0000000000000594-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dd83b753-6fbf-4903-b06d-00cc18f8fb62", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2b55ba37-f789-40db-956c-5a02983e5d8e", + "Date": "Fri, 18 Feb 2022 19:14:29 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000298-0000000000000596-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c0a3eeb2-d2d9-49a0-9297-f651e9d4dec5", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "673e296f-af54-4bd1-a2e7-84d6f072a169", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4", + "lastUpdateDateTime": "2022-02-18T19:14:30Z", + "createdDateTime": "2022-02-18T19:14:29Z", + "expirationDateTime": "2022-02-19T19:14:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000299-0000000000000598-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "e543d226-3c26-4e43-a4b5-9340484056fa", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "93a1f570-5163-4c46-b7cd-d371db3f415b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4", + "lastUpdateDateTime": "2022-02-18T19:14:30Z", + "createdDateTime": "2022-02-18T19:14:29Z", + "expirationDateTime": "2022-02-19T19:14:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000300-0000000000000600-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "67ca13a8-cb8b-4217-8bc6-d88990a9e180", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5332008f-83fe-4dce-8b20-60a718092069", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "jobId": "91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4", + "lastUpdateDateTime": "2022-02-18T19:14:30Z", + "createdDateTime": "2022-02-18T19:14:29Z", + "expirationDateTime": "2022-02-19T19:14:29Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000301-0000000000000602-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ebc715c0-c0fd-4834-8117-e565cfae4571", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ccae4967-18d9-44f2-8965-e2166984b2f8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": { + "jobId": "91c8c5c1-88da-4f7c-93ba-5de8a2abf0f4", + "lastUpdateDateTime": "2022-02-18T19:14:30Z", + "createdDateTime": "2022-02-18T19:14:29Z", + "expirationDateTime": "2022-02-19T19:14:29Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json index b6943178fcf5..2ff03aca622c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json @@ -1,103 +1,247 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "4cf5c0c5-07f3-484d-b6b9-bb68656d42fd", - "date": "Sat, 23 Oct 2021 00:56:13 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b8c6c109-28e2-4e51-a3c3-618c931f5703", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "235" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b8c6c109-28e2-4e51-a3c3-618c931f5703", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8c6c109-28e2-4e51-a3c3-618c931f5703\",\"lastUpdateDateTime\":\"2021-10-23T00:56:13Z\",\"createdDateTime\":\"2021-10-23T00:56:13Z\",\"expirationDateTime\":\"2021-10-24T00:56:13Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1f490573-4564-4635-8fb5-c5da87927b8d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b8c6c109-28e2-4e51-a3c3-618c931f5703", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8c6c109-28e2-4e51-a3c3-618c931f5703\",\"lastUpdateDateTime\":\"2021-10-23T00:56:13Z\",\"createdDateTime\":\"2021-10-23T00:56:13Z\",\"expirationDateTime\":\"2021-10-24T00:56:13Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "c701fce3-93bf-4f2a-8027-5a60d75ffeec", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b8c6c109-28e2-4e51-a3c3-618c931f5703", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8c6c109-28e2-4e51-a3c3-618c931f5703\",\"lastUpdateDateTime\":\"2021-10-23T00:56:14Z\",\"createdDateTime\":\"2021-10-23T00:56:13Z\",\"expirationDateTime\":\"2021-10-24T00:56:13Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "17ab4f99-6ab3-4be1-9023-6d593ea79dae", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b8c6c109-28e2-4e51-a3c3-618c931f5703", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"b8c6c109-28e2-4e51-a3c3-618c931f5703\",\"lastUpdateDateTime\":\"2021-10-23T00:56:14Z\",\"createdDateTime\":\"2021-10-23T00:56:13Z\",\"expirationDateTime\":\"2021-10-24T00:56:13Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "f5be8bbe-1846-4500-a823-1e70d1b0f7cd", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "73" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "340cd4ff03c6dde812d00ee817fd5d2d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000302-0000000000000604-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "0a879ec1-b4b7-4008-b560-05c70f12da86", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4a5f3e52-6a20-4a91-83d5-13f68a3cb9a3", + "Date": "Fri, 18 Feb 2022 19:14:33 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/11a45249-010b-4d9b-8f07-3539ee9bff02", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "167" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/11a45249-010b-4d9b-8f07-3539ee9bff02?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000303-0000000000000606-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "06262180-4ee5-43d0-a2c9-424e2b9af1ad", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0d775767-2a3d-4ea3-9f30-1dfc4f368ae1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "11a45249-010b-4d9b-8f07-3539ee9bff02", + "lastUpdateDateTime": "2022-02-18T19:14:33Z", + "createdDateTime": "2022-02-18T19:14:33Z", + "expirationDateTime": "2022-02-19T19:14:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/11a45249-010b-4d9b-8f07-3539ee9bff02?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000304-0000000000000608-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "feba3d44-6e99-48d9-b9c1-14e95d93712d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0bffce9a-bd8d-4976-b1d8-f57628f49a36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "11a45249-010b-4d9b-8f07-3539ee9bff02", + "lastUpdateDateTime": "2022-02-18T19:14:33Z", + "createdDateTime": "2022-02-18T19:14:33Z", + "expirationDateTime": "2022-02-19T19:14:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/11a45249-010b-4d9b-8f07-3539ee9bff02?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000305-0000000000000610-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "21c18ed7-3453-4ac4-bfc8-a58d15f51cae", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb3487e4-fe24-4bac-8807-07242a23a753", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "jobId": "11a45249-010b-4d9b-8f07-3539ee9bff02", + "lastUpdateDateTime": "2022-02-18T19:14:33Z", + "createdDateTime": "2022-02-18T19:14:33Z", + "expirationDateTime": "2022-02-19T19:14:33Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/11a45249-010b-4d9b-8f07-3539ee9bff02?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000306-0000000000000612-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ec5ba3ad-08ba-40ea-8cb5-90daab087076", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8f8450f-2161-41ee-b530-607724d10996", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" + }, + "ResponseBody": { + "jobId": "11a45249-010b-4d9b-8f07-3539ee9bff02", + "lastUpdateDateTime": "2022-02-18T19:14:33Z", + "createdDateTime": "2022-02-18T19:14:33Z", + "expirationDateTime": "2022-02-19T19:14:33Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json index 5b9d22ba5b89..6f258d785b74 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json @@ -1,179 +1,557 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "175da865-31d9-4766-a62a-2110235c8108", - "date": "Sat, 23 Oct 2021 00:56:19 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "229" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "e471059f-344d-4923-b958-736a6b27acd8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "797b42c7-430c-4848-9371-5e7302f69db1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "4e7089ce-b459-4e6d-97f7-4ff05a4c304e", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "c5b0deec-d3bc-401b-95b4-45fe58cf7f40", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:22 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "57dc6853-5eaf-4b2d-8a37-5d6a00d8fa1b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:25 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:19Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a2b19804-8e00-4c93-9d49-8b9768f11ec9", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:29Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "f487aa4f-43b1-4aa1-9776-9e18acf217a3", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3db971ac-422d-492f-9818-f6c1973f80da", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3db971ac-422d-492f-9818-f6c1973f80da\",\"lastUpdateDateTime\":\"2021-10-23T00:56:30Z\",\"createdDateTime\":\"2021-10-23T00:56:19Z\",\"expirationDateTime\":\"2021-10-24T00:56:19Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "6c6ac9d9-cefb-4959-85e7-4fcd4db507d8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "124" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3b1bfa7150c392a6af4b897b5403a6ad" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d4740db8-a936-4977-9587-0611875be826", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "73d20657-add0-4fe9-95cf-40f297c63fff", + "Date": "Fri, 18 Feb 2022 19:46:41 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f274372c-8e9b-4be3-85fb-a8299e3be5ab", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "200" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f274372c-8e9b-4be3-85fb-a8299e3be5ab?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2043b642-e5f0-470c-ab7c-69805f3ee52b", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac7c4f83-1c35-40c6-a0e7-ef738197f460", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "f274372c-8e9b-4be3-85fb-a8299e3be5ab", + "lastUpdateDateTime": "2022-02-18T19:46:41Z", + "createdDateTime": "2022-02-18T19:46:41Z", + "expirationDateTime": "2022-02-19T19:46:41Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f274372c-8e9b-4be3-85fb-a8299e3be5ab?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "2428af8a-3d2b-452b-afc4-4ee7b53f53ec", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "da4386ff-d791-44eb-92a6-7285cf099a26", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "f274372c-8e9b-4be3-85fb-a8299e3be5ab", + "lastUpdateDateTime": "2022-02-18T19:46:41Z", + "createdDateTime": "2022-02-18T19:46:41Z", + "expirationDateTime": "2022-02-19T19:46:41Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/f274372c-8e9b-4be3-85fb-a8299e3be5ab?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ee3e0a60-08f3-4fed-8791-87865ddd946d", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32fc0e11-fa08-43c1-83d3-9e1acb0df7aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" + }, + "ResponseBody": { + "jobId": "f274372c-8e9b-4be3-85fb-a8299e3be5ab", + "lastUpdateDateTime": "2022-02-18T19:46:42Z", + "createdDateTime": "2022-02-18T19:46:41Z", + "expirationDateTime": "2022-02-19T19:46:41Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json index b6e4996c7fbf..15aa8c976d39 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json @@ -1,103 +1,316 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "efb9a8b2-717e-4d84-8257-363ecf062d11", - "date": "Sat, 23 Oct 2021 00:55:38 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/5497ee5a-04db-4bdc-8502-5696231d8626", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "350" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/5497ee5a-04db-4bdc-8502-5696231d8626", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5497ee5a-04db-4bdc-8502-5696231d8626\",\"lastUpdateDateTime\":\"2021-10-23T00:55:38Z\",\"createdDateTime\":\"2021-10-23T00:55:38Z\",\"expirationDateTime\":\"2021-10-24T00:55:38Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "e14c0a4c-b7d9-4e24-a69a-0e66fc43f8ce", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/5497ee5a-04db-4bdc-8502-5696231d8626", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5497ee5a-04db-4bdc-8502-5696231d8626\",\"lastUpdateDateTime\":\"2021-10-23T00:55:38Z\",\"createdDateTime\":\"2021-10-23T00:55:38Z\",\"expirationDateTime\":\"2021-10-24T00:55:38Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d6dfe7e6-e3c0-4716-83a5-f7b8758c8943", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:38 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/5497ee5a-04db-4bdc-8502-5696231d8626", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5497ee5a-04db-4bdc-8502-5696231d8626\",\"lastUpdateDateTime\":\"2021-10-23T00:55:39Z\",\"createdDateTime\":\"2021-10-23T00:55:38Z\",\"expirationDateTime\":\"2021-10-24T00:55:38Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "3b36ff37-aea6-45b8-8069-906ae16c6775", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/5497ee5a-04db-4bdc-8502-5696231d8626", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"5497ee5a-04db-4bdc-8502-5696231d8626\",\"lastUpdateDateTime\":\"2021-10-23T00:55:39Z\",\"createdDateTime\":\"2021-10-23T00:55:38Z\",\"expirationDateTime\":\"2021-10-24T00:55:38Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "9595afce-647c-483e-98fe-36313d365203", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "111" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cbd339ce17c35137e2aeaf5c8267159f" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "139", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000263-0000000000000526-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "96566ec1-7df4-47b3-a853-30d218fb3f73", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a8639360-6680-42ca-9c6d-23e8fa4fb1d6", + "Date": "Fri, 18 Feb 2022 19:14:03 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/505d6539-2d67-4ae2-ba2a-1669e752802f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "213" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/505d6539-2d67-4ae2-ba2a-1669e752802f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000264-0000000000000528-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "cef54db3-0a0e-4dd5-b6cb-464d0acc904f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "546a553d-8b37-4d4e-8012-f0f19bedfc80", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "505d6539-2d67-4ae2-ba2a-1669e752802f", + "lastUpdateDateTime": "2022-02-18T19:14:03Z", + "createdDateTime": "2022-02-18T19:14:03Z", + "expirationDateTime": "2022-02-19T19:14:03Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/505d6539-2d67-4ae2-ba2a-1669e752802f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000265-0000000000000530-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "f9d89038-132a-4a20-9ba7-ab710d7a8e65", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf6e25de-bb4c-4d86-b135-015bf2e8a8d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "505d6539-2d67-4ae2-ba2a-1669e752802f", + "lastUpdateDateTime": "2022-02-18T19:14:03Z", + "createdDateTime": "2022-02-18T19:14:03Z", + "expirationDateTime": "2022-02-19T19:14:03Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/505d6539-2d67-4ae2-ba2a-1669e752802f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000266-0000000000000532-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c4191e28-8ace-4230-bfe0-2f00c26aea7a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "69900771-6e54-43e4-ade3-1df1bcb76d25", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" + }, + "ResponseBody": { + "jobId": "505d6539-2d67-4ae2-ba2a-1669e752802f", + "lastUpdateDateTime": "2022-02-18T19:14:04Z", + "createdDateTime": "2022-02-18T19:14:03Z", + "expirationDateTime": "2022-02-19T19:14:03Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/505d6539-2d67-4ae2-ba2a-1669e752802f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000267-0000000000000534-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "87ec512a-5b62-4efe-b3cf-229139d3a7b8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "614ac93c-14bf-42fb-a196-8d1c31bec9c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "jobId": "505d6539-2d67-4ae2-ba2a-1669e752802f", + "lastUpdateDateTime": "2022-02-18T19:14:04Z", + "createdDateTime": "2022-02-18T19:14:03Z", + "expirationDateTime": "2022-02-19T19:14:03Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json index a20d490ce155..a85fe46f345c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json @@ -1,103 +1,312 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "aa07c8f9-0b6e-46fc-a953-3ee163dad419", - "date": "Sat, 23 Oct 2021 00:55:41 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9262c774-4275-405d-863a-bcc678c0c273", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "282" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9262c774-4275-405d-863a-bcc678c0c273", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9262c774-4275-405d-863a-bcc678c0c273\",\"lastUpdateDateTime\":\"2021-10-23T00:55:41Z\",\"createdDateTime\":\"2021-10-23T00:55:41Z\",\"expirationDateTime\":\"2021-10-24T00:55:41Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "47778215-dd0f-4636-80e2-a848a5378b01", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9262c774-4275-405d-863a-bcc678c0c273", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9262c774-4275-405d-863a-bcc678c0c273\",\"lastUpdateDateTime\":\"2021-10-23T00:55:41Z\",\"createdDateTime\":\"2021-10-23T00:55:41Z\",\"expirationDateTime\":\"2021-10-24T00:55:41Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "3dbf20fc-a99b-47a9-88cb-551ee505ae5c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9262c774-4275-405d-863a-bcc678c0c273", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9262c774-4275-405d-863a-bcc678c0c273\",\"lastUpdateDateTime\":\"2021-10-23T00:55:42Z\",\"createdDateTime\":\"2021-10-23T00:55:41Z\",\"expirationDateTime\":\"2021-10-24T00:55:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "cba54729-7ffe-48ba-bdc1-dcbdbf8d430b", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9262c774-4275-405d-863a-bcc678c0c273", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9262c774-4275-405d-863a-bcc678c0c273\",\"lastUpdateDateTime\":\"2021-10-23T00:55:42Z\",\"createdDateTime\":\"2021-10-23T00:55:41Z\",\"expirationDateTime\":\"2021-10-24T00:55:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "c3835647-a4a2-49c4-9b5e-2bc2a7851de7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "349" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "eaff1e524a72db2cac72365f54d2a8fd" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000268-0000000000000536-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "58868447-4574-4e24-810a-7f0746dcb90f", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8ec44476-3332-4ba7-b862-957d0d6c1ee3", + "Date": "Fri, 18 Feb 2022 19:14:07 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000269-0000000000000538-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "83971704-e0c8-42bb-bb92-99be885b44b8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2943d42-7a62-4ae4-b111-29198e330a18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb", + "lastUpdateDateTime": "2022-02-18T19:14:08Z", + "createdDateTime": "2022-02-18T19:14:08Z", + "expirationDateTime": "2022-02-19T19:14:08Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000270-0000000000000540-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "8c8d0598-669c-458e-a819-46b1d65f6ec7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9878426d-69dd-4c30-b134-89264a8abafb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb", + "lastUpdateDateTime": "2022-02-18T19:14:08Z", + "createdDateTime": "2022-02-18T19:14:08Z", + "expirationDateTime": "2022-02-19T19:14:08Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000271-0000000000000542-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "88eed53a-5b77-487f-9f14-337b448cd6a7", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b24fde9d-f420-45a7-819e-19f28d2793c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "jobId": "6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb", + "lastUpdateDateTime": "2022-02-18T19:14:08Z", + "createdDateTime": "2022-02-18T19:14:08Z", + "expirationDateTime": "2022-02-19T19:14:08Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000272-0000000000000544-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "49029df1-5779-4f86-bade-ebbbe22ba6ab", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ec135d77-f866-4e95-ae5c-a76097479a1b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": { + "jobId": "6afdcaab-62fd-4390-b66e-fb0dfb2b0ecb", + "lastUpdateDateTime": "2022-02-18T19:14:08Z", + "createdDateTime": "2022-02-18T19:14:08Z", + "expirationDateTime": "2022-02-19T19:14:08Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json index ad8bedaf4957..c6c871bd1129 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json @@ -1,27 +1,2553 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"25\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"26\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"27\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"28\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"29\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"30\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"31\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"32\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"33\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"34\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"35\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"36\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"37\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"38\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"39\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"40\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"41\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"42\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"43\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"44\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"45\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"46\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"47\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"48\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"49\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"50\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"51\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"52\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"53\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"54\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"55\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"56\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"57\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"58\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"59\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"60\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"61\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"62\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"63\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"64\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"65\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"66\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"67\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"68\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"69\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"70\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"71\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"72\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"73\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"74\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"75\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"76\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"77\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"78\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"79\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"80\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"81\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"82\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"83\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"84\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"85\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"86\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"87\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"88\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"89\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"90\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"91\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"92\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"93\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"94\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"95\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"96\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"97\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"98\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"99\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"100\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"101\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"102\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"103\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"104\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"105\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"106\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"107\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"108\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"109\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"110\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"111\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"112\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"113\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"114\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"115\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"116\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"117\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"118\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"119\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"120\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"121\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"122\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"123\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"124\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"125\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"126\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"127\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"128\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"129\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"130\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"131\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"132\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"133\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"134\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"135\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"136\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"137\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"138\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"139\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"140\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"141\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"142\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"143\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"144\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"145\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"146\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"147\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"148\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"149\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"150\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"151\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"152\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"153\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"154\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"155\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"156\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"157\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"158\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"159\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"160\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"161\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"162\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"163\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"164\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"165\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"166\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"167\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"168\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"169\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"170\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"171\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"172\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"173\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"174\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"175\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"176\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"177\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"178\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"179\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"180\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"181\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"182\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"183\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"184\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"185\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"186\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"187\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"188\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"189\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"190\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"191\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"192\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"193\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"194\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"195\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"196\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"197\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"198\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"199\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"200\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"201\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"202\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"203\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"204\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"205\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"206\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"207\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"208\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"209\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"210\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"211\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"212\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"213\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"214\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"215\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"216\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"217\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"218\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"219\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"220\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"221\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"222\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"223\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"224\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"225\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"226\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"227\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"228\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"229\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"230\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"231\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"232\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"233\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"234\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"235\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"236\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"237\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"238\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"239\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"240\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"241\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"242\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"243\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"244\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"245\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"246\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"247\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"248\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"249\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"250\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"251\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"252\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"253\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"254\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"255\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"256\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"257\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"258\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"259\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"260\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"261\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"262\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"263\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"264\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"265\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"266\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"267\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"268\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"269\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"270\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"271\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"272\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"273\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"274\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"275\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"276\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"277\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"278\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"279\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"280\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"281\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"282\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"283\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"284\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"285\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"286\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"287\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"288\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"289\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"290\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"291\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"292\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"293\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"294\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"295\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"296\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"297\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"298\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"299\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"300\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"301\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"302\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"303\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"304\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"305\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"306\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"307\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"308\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"309\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"310\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"311\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"312\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"313\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"314\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"315\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"316\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"317\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"318\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"319\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"320\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"321\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"322\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"323\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"324\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"325\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"326\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"327\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"328\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"329\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"330\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"331\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"332\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"333\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"334\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"335\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"336\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"337\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"338\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"339\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"340\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"341\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"342\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"343\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"344\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"345\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"346\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"347\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"348\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"349\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"350\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"351\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"352\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"353\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"354\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"355\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"356\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"357\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"358\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"359\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"360\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"361\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"362\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"363\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"364\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"365\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"366\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"367\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"368\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"369\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"370\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"371\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"372\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"373\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"374\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"375\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"376\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"377\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"378\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"379\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"380\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"381\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"382\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"383\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"384\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"385\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"386\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"387\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"388\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"389\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"390\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"391\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"392\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"393\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"394\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"395\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"396\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"397\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"398\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"399\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"400\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"401\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"402\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"403\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"404\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"405\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"406\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"407\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"408\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"409\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"410\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"411\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"412\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"413\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"414\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"415\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"416\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"417\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"418\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"419\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"420\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"421\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"422\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"423\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"424\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"425\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"426\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"427\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"428\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"429\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"430\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"431\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"432\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"433\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"434\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"435\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"436\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"437\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"438\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"439\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"440\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"441\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"442\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"443\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"444\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"445\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"446\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"447\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"448\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"449\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"450\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"451\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"452\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"453\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"454\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"455\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"456\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"457\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"458\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"459\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"460\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"461\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"462\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"463\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"464\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"465\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"466\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"467\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"468\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"469\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"470\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"471\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"472\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"473\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"474\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"475\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"476\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"477\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"478\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"479\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"480\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"481\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"482\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"483\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"484\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"485\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"486\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"487\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"488\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"489\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"490\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"491\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"492\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"493\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"494\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"495\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"496\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"497\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"498\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"499\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"}]}", - "status": 413, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Request Payload sent is too large to be processed. Limit request size to: 524288\"}}}", - "responseHeaders": { - "apim-request-id": "420f3e1d-a24e-432b-a3ab-c4e7cad63633", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:34 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fabb23fcf348878da5328d2e1b041a32" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "710405", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000257-0000000000000514-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1849b1eb-aa64-4412-bc67-54665157a0d3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "1", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "2", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "3", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "4", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "5", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "6", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "7", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "8", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "9", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "10", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "11", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "12", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "13", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "14", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "15", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "16", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "17", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "18", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "19", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "20", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "21", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "22", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "23", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "24", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "25", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "26", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "27", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "28", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "29", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "30", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "31", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "32", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "33", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "34", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "35", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "36", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "37", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "38", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "39", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "40", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "41", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "42", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "43", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "44", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "45", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "46", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "47", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "48", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "49", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "50", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "51", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "52", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "53", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "54", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "55", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "56", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "57", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "58", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "59", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "60", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "61", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "62", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "63", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "64", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "65", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "66", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "67", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "68", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "69", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "70", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "71", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "72", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "73", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "74", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "75", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "76", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "77", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "78", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "79", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "80", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "81", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "82", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "83", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "84", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "85", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "86", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "87", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "88", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "89", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "90", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "91", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "92", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "93", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "94", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "95", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "96", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "97", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "98", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "99", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "100", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "101", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "102", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "103", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "104", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "105", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "106", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "107", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "108", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "109", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "110", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "111", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "112", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "113", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "114", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "115", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "116", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "117", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "118", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "119", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "120", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "121", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "122", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "123", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "124", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "125", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "126", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "127", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "128", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "129", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "130", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "131", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "132", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "133", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "134", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "135", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "136", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "137", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "138", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "139", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "140", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "141", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "142", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "143", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "144", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "145", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "146", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "147", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "148", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "149", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "150", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "151", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "152", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "153", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "154", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "155", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "156", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "157", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "158", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "159", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "160", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "161", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "162", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "163", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "164", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "165", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "166", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "167", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "168", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "169", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "170", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "171", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "172", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "173", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "174", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "175", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "176", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "177", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "178", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "179", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "180", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "181", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "182", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "183", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "184", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "185", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "186", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "187", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "188", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "189", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "190", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "191", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "192", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "193", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "194", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "195", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "196", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "197", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "198", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "199", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "200", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "201", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "202", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "203", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "204", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "205", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "206", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "207", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "208", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "209", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "210", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "211", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "212", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "213", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "214", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "215", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "216", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "217", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "218", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "219", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "220", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "221", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "222", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "223", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "224", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "225", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "226", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "227", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "228", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "229", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "230", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "231", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "232", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "233", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "234", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "235", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "236", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "237", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "238", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "239", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "240", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "241", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "242", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "243", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "244", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "245", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "246", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "247", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "248", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "249", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "250", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "251", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "252", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "253", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "254", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "255", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "256", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "257", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "258", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "259", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "260", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "261", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "262", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "263", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "264", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "265", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "266", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "267", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "268", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "269", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "270", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "271", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "272", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "273", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "274", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "275", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "276", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "277", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "278", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "279", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "280", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "281", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "282", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "283", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "284", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "285", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "286", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "287", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "288", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "289", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "290", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "291", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "292", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "293", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "294", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "295", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "296", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "297", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "298", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "299", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "300", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "301", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "302", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "303", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "304", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "305", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "306", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "307", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "308", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "309", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "310", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "311", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "312", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "313", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "314", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "315", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "316", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "317", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "318", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "319", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "320", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "321", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "322", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "323", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "324", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "325", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "326", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "327", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "328", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "329", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "330", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "331", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "332", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "333", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "334", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "335", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "336", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "337", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "338", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "339", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "340", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "341", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "342", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "343", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "344", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "345", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "346", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "347", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "348", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "349", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "350", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "351", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "352", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "353", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "354", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "355", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "356", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "357", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "358", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "359", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "360", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "361", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "362", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "363", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "364", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "365", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "366", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "367", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "368", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "369", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "370", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "371", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "372", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "373", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "374", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "375", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "376", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "377", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "378", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "379", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "380", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "381", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "382", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "383", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "384", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "385", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "386", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "387", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "388", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "389", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "390", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "391", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "392", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "393", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "394", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "395", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "396", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "397", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "398", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "399", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "400", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "401", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "402", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "403", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "404", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "405", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "406", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "407", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "408", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "409", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "410", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "411", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "412", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "413", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "414", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "415", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "416", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "417", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "418", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "419", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "420", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "421", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "422", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "423", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "424", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "425", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "426", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "427", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "428", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "429", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "430", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "431", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "432", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "433", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "434", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "435", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "436", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "437", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "438", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "439", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "440", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "441", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "442", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "443", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "444", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "445", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "446", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "447", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "448", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "449", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "450", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "451", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "452", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "453", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "454", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "455", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "456", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "457", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "458", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "459", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "460", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "461", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "462", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "463", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "464", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "465", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "466", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "467", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "468", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "469", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "470", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "471", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "472", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "473", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "474", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "475", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "476", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "477", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "478", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "479", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "480", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "481", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "482", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "483", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "484", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "485", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "486", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "487", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "488", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "489", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "490", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "491", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "492", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "493", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "494", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "495", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "496", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "497", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "498", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "499", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + } + ] + }, + "StatusCode": 413, + "ResponseHeaders": { + "apim-request-id": "1bc969a8-86fd-440e-a77b-bf8ad5189cc6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Request Payload sent is too large to be processed. Limit request size to: 524288" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json index 417aefae8726..a007c802a15d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json @@ -1,208 +1,251 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "model-version": "latest", - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "2881922a-8990-4927-802a-347b4aaedbe0", - "date": "Sat, 23 Oct 2021 00:55:44 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "240" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:44Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "3e38a273-8d37-4470-9bc7-899c80c5fa20", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:44Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1e2e2940-c9ba-4ce0-b1d5-239bee24bdfc", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:44Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "66b7d33a-a51d-424d-9933-00f4f12732cf", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:44Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d58a4d42-ff9f-4b89-9702-04d027bb19f8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:47 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:49Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "10bb1d46-cfc8-4412-9fd6-5a060576110c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:50 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:49Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "905ed616-8c97-488f-8a6a-b6e24f00a0a1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:52 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:49Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "c03bd29e-3c16-4e30-bd13-e9894e48a087", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:49Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "6d2cf548-deab-4d0d-87ad-f322d3f26a0d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:57 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cb606cc7-17be-47dc-bc00-4e00c0277286", - "query": { - "showStats": "true", - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"cb606cc7-17be-47dc-bc00-4e00c0277286\",\"lastUpdateDateTime\":\"2021-10-23T00:55:58Z\",\"createdDateTime\":\"2021-10-23T00:55:44Z\",\"expirationDateTime\":\"2021-10-24T00:55:44Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"statistics\":{\"documentsCount\":5,\"validDocumentsCount\":4,\"erroneousDocumentsCount\":1,\"transactionsCount\":4},\"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\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "f7b48717-0f2c-4b16-bd71-8e6a91089ab7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "215" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b7886f5b0094498f9a0939c3cb1bca51" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?model-version=latest\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000273-0000000000000546-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c4e33f31-6dc6-471d-a506-60f5ed3128c1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "73b5bf4c-0c47-47e0-a4e2-d010bef85a2c", + "Date": "Fri, 18 Feb 2022 19:14:11 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/78851c7a-298d-4faf-ba9d-960aee4dc34a", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "153" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/78851c7a-298d-4faf-ba9d-960aee4dc34a?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000274-0000000000000548-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1c7b21dc-5512-40d5-b13b-f57dcde541a6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "548b830e-f031-472d-9923-0cd5ac167848", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "78851c7a-298d-4faf-ba9d-960aee4dc34a", + "lastUpdateDateTime": "2022-02-18T19:14:12Z", + "createdDateTime": "2022-02-18T19:14:12Z", + "expirationDateTime": "2022-02-19T19:14:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/78851c7a-298d-4faf-ba9d-960aee4dc34a?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000275-0000000000000550-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "306cbb8d-beda-417d-ab4e-34cff8ba15b8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f3e97cd-f154-4fe8-8012-edcad84391b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "78851c7a-298d-4faf-ba9d-960aee4dc34a", + "lastUpdateDateTime": "2022-02-18T19:14:12Z", + "createdDateTime": "2022-02-18T19:14:12Z", + "expirationDateTime": "2022-02-19T19:14:12Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/78851c7a-298d-4faf-ba9d-960aee4dc34a?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000276-0000000000000552-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "28d3e770-7546-46d4-88de-1f7c73cd5211", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "28d86532-8a8a-4382-91ab-dfbea3860944", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "jobId": "78851c7a-298d-4faf-ba9d-960aee4dc34a", + "lastUpdateDateTime": "2022-02-18T19:14:13Z", + "createdDateTime": "2022-02-18T19:14:12Z", + "expirationDateTime": "2022-02-19T19:14:12Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 5, + "validDocumentsCount": 4, + "erroneousDocumentsCount": 1, + "transactionsCount": 4 + }, + "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": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json index df79e1e9aab8..6f5f44cce18a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json @@ -1,103 +1,637 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "79a2ae13-40b6-4b16-9ed9-8572d277a244", - "date": "Sat, 23 Oct 2021 00:55:28 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/7cc45d99-42f5-48dd-b0b6-5df30fe49e28", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "267" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/7cc45d99-42f5-48dd-b0b6-5df30fe49e28", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7cc45d99-42f5-48dd-b0b6-5df30fe49e28\",\"lastUpdateDateTime\":\"2021-10-23T00:55:28Z\",\"createdDateTime\":\"2021-10-23T00:55:28Z\",\"expirationDateTime\":\"2021-10-24T00:55:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "bb7f5d3d-478e-4f6a-976b-923363d2289a", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/7cc45d99-42f5-48dd-b0b6-5df30fe49e28", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7cc45d99-42f5-48dd-b0b6-5df30fe49e28\",\"lastUpdateDateTime\":\"2021-10-23T00:55:28Z\",\"createdDateTime\":\"2021-10-23T00:55:28Z\",\"expirationDateTime\":\"2021-10-24T00:55:28Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "473c2d67-1a7a-4b17-94a0-bf3056a55f31", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/7cc45d99-42f5-48dd-b0b6-5df30fe49e28", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7cc45d99-42f5-48dd-b0b6-5df30fe49e28\",\"lastUpdateDateTime\":\"2021-10-23T00:55:29Z\",\"createdDateTime\":\"2021-10-23T00:55:28Z\",\"expirationDateTime\":\"2021-10-24T00:55:28Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "ab279ac2-1cec-4b01-91b6-809008e9a30f", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "240" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/7cc45d99-42f5-48dd-b0b6-5df30fe49e28", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"7cc45d99-42f5-48dd-b0b6-5df30fe49e28\",\"lastUpdateDateTime\":\"2021-10-23T00:55:29Z\",\"createdDateTime\":\"2021-10-23T00:55:28Z\",\"expirationDateTime\":\"2021-10-24T00:55:28Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"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\"}}}],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "3f7bb5e7-052d-4fa6-8aa8-56cea16fffd4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:31 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "215" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8f137e103df6a68f682870f77ddba5fa" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "226", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000246-0000000000000492-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "af7f1661-b5f7-4a96-a61e-4c7869c7c573", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e439c501-ed47-4a91-9385-c707a2fb5c43", + "Date": "Fri, 18 Feb 2022 19:13:50 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/65ae4349-4cc8-447e-8310-9cf24b1ccf54", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/65ae4349-4cc8-447e-8310-9cf24b1ccf54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000247-0000000000000494-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "5ab61e31-d03d-436e-8252-f3a13e98e0e0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "086734e6-b397-4e5a-932f-ddc442e3b99e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "65ae4349-4cc8-447e-8310-9cf24b1ccf54", + "lastUpdateDateTime": "2022-02-18T19:13:50Z", + "createdDateTime": "2022-02-18T19:13:50Z", + "expirationDateTime": "2022-02-19T19:13:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/65ae4349-4cc8-447e-8310-9cf24b1ccf54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000248-0000000000000496-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c3aaa78e-629f-45cf-8d04-03b1ace068c0", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f491853-5065-47ad-b721-a4680caf7804", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "65ae4349-4cc8-447e-8310-9cf24b1ccf54", + "lastUpdateDateTime": "2022-02-18T19:13:50Z", + "createdDateTime": "2022-02-18T19:13:50Z", + "expirationDateTime": "2022-02-19T19:13:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/65ae4349-4cc8-447e-8310-9cf24b1ccf54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000249-0000000000000498-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bd2192e5-7d91-4239-b1dc-b4e4b812fe64", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5b96f52-facd-47b6-bd9d-a46be4a5c391", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "249" + }, + "ResponseBody": { + "jobId": "65ae4349-4cc8-447e-8310-9cf24b1ccf54", + "lastUpdateDateTime": "2022-02-18T19:13:51Z", + "createdDateTime": "2022-02-18T19:13:50Z", + "expirationDateTime": "2022-02-19T19:13:50Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/65ae4349-4cc8-447e-8310-9cf24b1ccf54?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000250-0000000000000500-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "1433805c-8ee0-4f83-a6a4-97dcdeadc752", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "754baeba-d631-4de9-82f9-a541a290976b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "99" + }, + "ResponseBody": { + "jobId": "65ae4349-4cc8-447e-8310-9cf24b1ccf54", + "lastUpdateDateTime": "2022-02-18T19:13:51Z", + "createdDateTime": "2022-02-18T19:13:50Z", + "expirationDateTime": "2022-02-19T19:13:50Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json index 356b5b4c0dd1..952472856597 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json @@ -1,27 +1,108 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"}]}", - "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 10 records are permitted.\"}}}", - "responseHeaders": { - "apim-request-id": "a7268f07-b510-4c30-a143-e8386740a809", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:33 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "66790beb97d240ee491fe473237e45f8" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "544", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000256-0000000000000512-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "616cfcb3-94e4-4f34-9039-21346ce57935", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "95d7069d-5e8e-4576-8de1-be5196f75bfc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:13:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 10 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json index 1a3c6dadd27f..05599542cb5e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json @@ -1,103 +1,271 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "711252d0-9fc1-4aef-8632-492b0e6bfbf3", - "date": "Sat, 23 Oct 2021 00:56:02 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3ccf68d5-8657-437f-b1c4-8c477338d856", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "496" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3ccf68d5-8657-437f-b1c4-8c477338d856", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3ccf68d5-8657-437f-b1c4-8c477338d856\",\"lastUpdateDateTime\":\"2021-10-23T00:56:02Z\",\"createdDateTime\":\"2021-10-23T00:56:02Z\",\"expirationDateTime\":\"2021-10-24T00:56:02Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "5c04b5e9-a95c-4a40-a258-d4feddbe27e7", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3ccf68d5-8657-437f-b1c4-8c477338d856", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3ccf68d5-8657-437f-b1c4-8c477338d856\",\"lastUpdateDateTime\":\"2021-10-23T00:56:02Z\",\"createdDateTime\":\"2021-10-23T00:56:02Z\",\"expirationDateTime\":\"2021-10-24T00:56:02Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "6a37e667-1141-4a7a-b2a4-9858038849b1", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:02 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3ccf68d5-8657-437f-b1c4-8c477338d856", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3ccf68d5-8657-437f-b1c4-8c477338d856\",\"lastUpdateDateTime\":\"2021-10-23T00:56:03Z\",\"createdDateTime\":\"2021-10-23T00:56:02Z\",\"expirationDateTime\":\"2021-10-24T00:56:02Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "edbd9b8b-0f6c-4498-b278-560250651460", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3ccf68d5-8657-437f-b1c4-8c477338d856", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3ccf68d5-8657-437f-b1c4-8c477338d856\",\"lastUpdateDateTime\":\"2021-10-23T00:56:03Z\",\"createdDateTime\":\"2021-10-23T00:56:02Z\",\"expirationDateTime\":\"2021-10-24T00:56:02Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "06acb305-8e09-41e0-bc8f-fb0d3dfffeb4", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:04 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6aa0cf0a3da9e1bfb65c832d3ac9338e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000282-0000000000000564-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "337dd2b1-8d9b-4831-bb95-e8cdc2b5fcb3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "57092458-5217-4a3e-bd92-275eba258fa3", + "Date": "Fri, 18 Feb 2022 19:14:19 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000283-0000000000000566-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "bf2e635d-eb79-4122-a4a2-e9438bb947fc", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "516422b3-ff95-4aa8-985f-d5d042b98a75", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "jobId": "20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff", + "lastUpdateDateTime": "2022-02-18T19:14:19Z", + "createdDateTime": "2022-02-18T19:14:19Z", + "expirationDateTime": "2022-02-19T19:14:19Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000284-0000000000000568-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "a4af7490-9066-45a7-a5b1-a266f248bb90", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a53c7ebf-79e8-4d14-9d10-bf381afd39fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff", + "lastUpdateDateTime": "2022-02-18T19:14:19Z", + "createdDateTime": "2022-02-18T19:14:19Z", + "expirationDateTime": "2022-02-19T19:14:19Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000285-0000000000000570-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "80b853d8-f8da-471e-aed1-0cfc9be4dea9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8144d2d1-9d10-49d8-ba76-141c620d6e5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "jobId": "20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff", + "lastUpdateDateTime": "2022-02-18T19:14:20Z", + "createdDateTime": "2022-02-18T19:14:19Z", + "expirationDateTime": "2022-02-19T19:14:19Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000286-0000000000000572-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "31e7f608-fd2f-411a-bfb0-4b2e614d1545", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47e6dec7-bb4e-4686-b788-5265ef91bc8d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "jobId": "20e9e5c2-2e7a-4b21-b6a8-8ebdc34b04ff", + "lastUpdateDateTime": "2022-02-18T19:14:20Z", + "createdDateTime": "2022-02-18T19:14:19Z", + "expirationDateTime": "2022-02-19T19:14:19Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json index fc6db83996ff..abd7ffb4e4ac 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json @@ -1,103 +1,270 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "efb03adf-f505-4cc8-a46b-187a32e7a536", - "date": "Sat, 23 Oct 2021 00:56:05 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e0a6881b-e322-4311-a048-2116582d0365", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "277" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e0a6881b-e322-4311-a048-2116582d0365", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e0a6881b-e322-4311-a048-2116582d0365\",\"lastUpdateDateTime\":\"2021-10-23T00:56:05Z\",\"createdDateTime\":\"2021-10-23T00:56:05Z\",\"expirationDateTime\":\"2021-10-24T00:56:05Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1ee46ca7-f716-4f4a-81e3-6d9effbaa266", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e0a6881b-e322-4311-a048-2116582d0365", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e0a6881b-e322-4311-a048-2116582d0365\",\"lastUpdateDateTime\":\"2021-10-23T00:56:05Z\",\"createdDateTime\":\"2021-10-23T00:56:05Z\",\"expirationDateTime\":\"2021-10-24T00:56:05Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1c2cd7dd-2d9a-4f6c-acb7-fafd1ef51975", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:05 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e0a6881b-e322-4311-a048-2116582d0365", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e0a6881b-e322-4311-a048-2116582d0365\",\"lastUpdateDateTime\":\"2021-10-23T00:56:05Z\",\"createdDateTime\":\"2021-10-23T00:56:05Z\",\"expirationDateTime\":\"2021-10-24T00:56:05Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "12793ce7-b7f7-4785-a6f2-aafd60c9c34d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "117" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e0a6881b-e322-4311-a048-2116582d0365", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"e0a6881b-e322-4311-a048-2116582d0365\",\"lastUpdateDateTime\":\"2021-10-23T00:56:05Z\",\"createdDateTime\":\"2021-10-23T00:56:05Z\",\"expirationDateTime\":\"2021-10-24T00:56:05Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "426aff1b-a5bf-4ecb-be52-55be9b3f717d", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "359" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e3af59f81016cebcf9e636cd50febc46" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "202", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000287-0000000000000574-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "b3a9af2f-e7e9-4f75-976c-fa506c328cf1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4d2b7a30-edca-46c3-a5bf-7e8d53b62371", + "Date": "Fri, 18 Feb 2022 19:14:22 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46eb24bb-4c05-455f-8d67-3ceec561daf3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46eb24bb-4c05-455f-8d67-3ceec561daf3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000288-0000000000000576-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "c6343e14-b1f7-41b0-a311-c5138f08c0b4", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13a1ee58-3066-4190-905b-a7a2770b61da", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "46eb24bb-4c05-455f-8d67-3ceec561daf3", + "lastUpdateDateTime": "2022-02-18T19:14:23Z", + "createdDateTime": "2022-02-18T19:14:22Z", + "expirationDateTime": "2022-02-19T19:14:22Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46eb24bb-4c05-455f-8d67-3ceec561daf3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000289-0000000000000578-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "3766f335-428e-4551-98be-54e10ca669b9", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96f71317-9fcc-4de4-8887-7a74a62c906d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "46eb24bb-4c05-455f-8d67-3ceec561daf3", + "lastUpdateDateTime": "2022-02-18T19:14:23Z", + "createdDateTime": "2022-02-18T19:14:22Z", + "expirationDateTime": "2022-02-19T19:14:22Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46eb24bb-4c05-455f-8d67-3ceec561daf3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000290-0000000000000580-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "968e6060-6176-48f3-83be-5b0565fc01f1", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a72b377a-e06b-4b94-bb8c-9373a82c948d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "jobId": "46eb24bb-4c05-455f-8d67-3ceec561daf3", + "lastUpdateDateTime": "2022-02-18T19:14:23Z", + "createdDateTime": "2022-02-18T19:14:22Z", + "expirationDateTime": "2022-02-19T19:14:22Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46eb24bb-4c05-455f-8d67-3ceec561daf3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000291-0000000000000582-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "fa598ffb-e9d2-40ea-a80b-100a91378324", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71105a6e-415a-4de0-a601-0380bc3d7668", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "291" + }, + "ResponseBody": { + "jobId": "46eb24bb-4c05-455f-8d67-3ceec561daf3", + "lastUpdateDateTime": "2022-02-18T19:14:23Z", + "createdDateTime": "2022-02-18T19:14:22Z", + "expirationDateTime": "2022-02-19T19:14:22Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json index 33b660748401..64ecd22b8fa7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json @@ -1,103 +1,271 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "5dd08bb2-fee1-4fee-a58a-be3019887ee1", - "date": "Sat, 23 Oct 2021 00:55:59 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/d5b7ff6f-7309-43fd-9f70-238a52956b80", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "375" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/d5b7ff6f-7309-43fd-9f70-238a52956b80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5b7ff6f-7309-43fd-9f70-238a52956b80\",\"lastUpdateDateTime\":\"2021-10-23T00:55:59Z\",\"createdDateTime\":\"2021-10-23T00:55:59Z\",\"expirationDateTime\":\"2021-10-24T00:55:59Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a74ca2a6-2e96-41b8-9ee8-f1e90ed8bb62", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/d5b7ff6f-7309-43fd-9f70-238a52956b80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5b7ff6f-7309-43fd-9f70-238a52956b80\",\"lastUpdateDateTime\":\"2021-10-23T00:55:59Z\",\"createdDateTime\":\"2021-10-23T00:55:59Z\",\"expirationDateTime\":\"2021-10-24T00:55:59Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "146584e7-bd6e-4bc9-91f5-37b1c6265039", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:55:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/d5b7ff6f-7309-43fd-9f70-238a52956b80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5b7ff6f-7309-43fd-9f70-238a52956b80\",\"lastUpdateDateTime\":\"2021-10-23T00:56:00Z\",\"createdDateTime\":\"2021-10-23T00:55:59Z\",\"expirationDateTime\":\"2021-10-24T00:55:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "31c2f81a-ee23-483b-962c-e9c35e219f0c", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/d5b7ff6f-7309-43fd-9f70-238a52956b80", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d5b7ff6f-7309-43fd-9f70-238a52956b80\",\"lastUpdateDateTime\":\"2021-10-23T00:56:00Z\",\"createdDateTime\":\"2021-10-23T00:55:59Z\",\"expirationDateTime\":\"2021-10-24T00:55:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b564ade1-7be9-464f-99b3-d09f33dacf72", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "90b8f6a3eb04ec8034dd179929e5d389" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000277-0000000000000554-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "d0f9c5a3-7cd4-41df-b506-fb3e9d1bf23a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "76370bce-22f0-4729-a06d-b69fa7980ff1", + "Date": "Fri, 18 Feb 2022 19:14:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/949eea5c-ceb8-4571-b0d1-1a29f21de7aa", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "153" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/949eea5c-ceb8-4571-b0d1-1a29f21de7aa?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000278-0000000000000556-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9456c152-3efe-4a96-a857-de344b0b6efe", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "828b8ae1-c375-4764-ae1c-1d48c5980db2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "jobId": "949eea5c-ceb8-4571-b0d1-1a29f21de7aa", + "lastUpdateDateTime": "2022-02-18T19:14:16Z", + "createdDateTime": "2022-02-18T19:14:15Z", + "expirationDateTime": "2022-02-19T19:14:15Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/949eea5c-ceb8-4571-b0d1-1a29f21de7aa?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000279-0000000000000558-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "49ad7283-e250-449d-b85c-ea0bf6675fb3", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ce07f41c-a141-47dc-ab81-d4caabf301cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "949eea5c-ceb8-4571-b0d1-1a29f21de7aa", + "lastUpdateDateTime": "2022-02-18T19:14:16Z", + "createdDateTime": "2022-02-18T19:14:15Z", + "expirationDateTime": "2022-02-19T19:14:15Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/949eea5c-ceb8-4571-b0d1-1a29f21de7aa?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000280-0000000000000560-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "00879729-f2df-4b1c-b017-9ce23082c951", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b585ae0-3b09-4bce-89e5-9d57c97e7b37", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "949eea5c-ceb8-4571-b0d1-1a29f21de7aa", + "lastUpdateDateTime": "2022-02-18T19:14:16Z", + "createdDateTime": "2022-02-18T19:14:15Z", + "expirationDateTime": "2022-02-19T19:14:15Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/949eea5c-ceb8-4571-b0d1-1a29f21de7aa?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000281-0000000000000562-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "ac3ef8f2-23e9-42cb-b774-16c3d0ea089c", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "beeaf19e-2d29-4151-978e-81e3a9cc28fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "95" + }, + "ResponseBody": { + "jobId": "949eea5c-ceb8-4571-b0d1-1a29f21de7aa", + "lastUpdateDateTime": "2022-02-18T19:14:16Z", + "createdDateTime": "2022-02-18T19:14:15Z", + "expirationDateTime": "2022-02-19T19:14:15Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json index 1ff9d725f720..772ae3e98e49 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json @@ -1,103 +1,284 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I should take my cat to the veterinarian.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "f6b41f65-f998-4e67-b350-07c1e5777542", - "date": "Sat, 23 Oct 2021 00:56:07 GMT", - "operation-location": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/6a8f3e84-201f-4103-ad8e-b3c54e69a55d", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "244" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/6a8f3e84-201f-4103-ad8e-b3c54e69a55d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6a8f3e84-201f-4103-ad8e-b3c54e69a55d\",\"lastUpdateDateTime\":\"2021-10-23T00:56:08Z\",\"createdDateTime\":\"2021-10-23T00:56:08Z\",\"expirationDateTime\":\"2021-10-24T00:56:08Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0e503604-f985-4000-a220-bb2d3252a672", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/6a8f3e84-201f-4103-ad8e-b3c54e69a55d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6a8f3e84-201f-4103-ad8e-b3c54e69a55d\",\"lastUpdateDateTime\":\"2021-10-23T00:56:08Z\",\"createdDateTime\":\"2021-10-23T00:56:08Z\",\"expirationDateTime\":\"2021-10-24T00:56:08Z\",\"status\":\"running\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0c229e3d-6310-4dcb-acf8-cfc9428969d8", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:07 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/6a8f3e84-201f-4103-ad8e-b3c54e69a55d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6a8f3e84-201f-4103-ad8e-b3c54e69a55d\",\"lastUpdateDateTime\":\"2021-10-23T00:56:08Z\",\"createdDateTime\":\"2021-10-23T00:56:08Z\",\"expirationDateTime\":\"2021-10-24T00:56:08Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "2dcbede2-e495-40a3-ade6-985c0ae2e6f5", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" - } - }, - { - "method": "GET", - "url": "https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/6a8f3e84-201f-4103-ad8e-b3c54e69a55d", - "query": { - "$top": "20", - "$skip": "0" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6a8f3e84-201f-4103-ad8e-b3c54e69a55d\",\"lastUpdateDateTime\":\"2021-10-23T00:56:08Z\",\"createdDateTime\":\"2021-10-23T00:56:08Z\",\"expirationDateTime\":\"2021-10-24T00:56:08Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "338051f8-98c4-4b95-a7a1-43108bb34f92", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 23 Oct 2021 00:56:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "3e42e54d0012ad7e80c3bdf7d4a9294e" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "Content-Length": "171", + "Content-Type": "application/json", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000292-0000000000000584-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "6e15c44b-3dbb-4688-8288-b30382d7d9e8", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I should take my cat to the veterinarian." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "105bcf24-7fb0-4d51-a940-354fc1293bf7", + "Date": "Fri, 18 Feb 2022 19:14:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c804e047-c0c3-48b5-9252-a8210b99fcc2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c804e047-c0c3-48b5-9252-a8210b99fcc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000293-0000000000000586-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9905d9fa-4201-491a-ae88-da6bdee4e3a2", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5fc029a3-d660-461f-9d2b-9c58a1dd1e82", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "c804e047-c0c3-48b5-9252-a8210b99fcc2", + "lastUpdateDateTime": "2022-02-18T19:14:26Z", + "createdDateTime": "2022-02-18T19:14:26Z", + "expirationDateTime": "2022-02-19T19:14:26Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c804e047-c0c3-48b5-9252-a8210b99fcc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000294-0000000000000588-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "69b68e9f-ec9f-4441-a697-7add8901b11a", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f417cc2-1f5a-4115-a9ba-dc0c1f67579d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "c804e047-c0c3-48b5-9252-a8210b99fcc2", + "lastUpdateDateTime": "2022-02-18T19:14:26Z", + "createdDateTime": "2022-02-18T19:14:26Z", + "expirationDateTime": "2022-02-19T19:14:26Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c804e047-c0c3-48b5-9252-a8210b99fcc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000295-0000000000000590-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "9a6a6084-4d39-4967-b29d-b51b26e7eb23", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "44734a88-6da3-49fa-8940-b3b292cc2c18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "jobId": "c804e047-c0c3-48b5-9252-a8210b99fcc2", + "lastUpdateDateTime": "2022-02-18T19:14:27Z", + "createdDateTime": "2022-02-18T19:14:26Z", + "expirationDateTime": "2022-02-19T19:14:26Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c804e047-c0c3-48b5-9252-a8210b99fcc2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-GB", + "Connection": "keep-alive", + "ocp-apim-subscription-key": "api_key", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "traceparent": "00-00000000000000000000000000000296-0000000000000592-00", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "dc4e6835-15ae-4c03-8743-0a5f0ea18ed6", + "x-ms-useragent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 OS/Win32" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7ff1389-b5fc-45db-b3ab-d4a633e7ea70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:14:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "361" + }, + "ResponseBody": { + "jobId": "c804e047-c0c3-48b5-9252-a8210b99fcc2", + "lastUpdateDateTime": "2022-02-18T19:14:27Z", + "createdDateTime": "2022-02-18T19:14:26Z", + "expirationDateTime": "2022-02-19T19:14:26Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js deleted file mode 100644 index 98a15e22c9ed..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3507106128a8c3279ca558497e4d0b6b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7ad1f3f9-25cb-4705-8554-dcf42cac5700', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Amgkkz3phtZEtkyh8W8mBMY; expires=Mon, 22-Nov-2021 00:43:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdiR-xpog7jlsMvTlD6eBRLxRH9sTTKNoNu7GKSuE2MJ1xdSjn1j1AzcXURw_L8PcC9GiOiHvt9qNgzfLDgBQVO9tfsHX0LCgnhCcuOqpF3F6_gNVSkXvBbrhg2aBmU9bQQOwwP7x-clODFVvDmjJ2Z5HgdsU6cBkECghMYRt5MMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:11 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f2d8d20400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsofD95_6v1FvmYlwR9QIFs; expires=Mon, 22-Nov-2021 00:43:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrOJPUBgtF6GyE5ywzJzoMjWA70xp6QXoKGcorj8xwgW4KPjU7NlITnu0rEceUpCVgnikt-zO-gMo9ZixnvE8Mktp-s_ci3iq6v4fGNfWUG_iCwWdzsNpDmpnL6zRD1QdEcWyb4zph8MGzFYHjtYq-_d8-IPeqdEPGgO9j6RUZH_cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:11 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e3008395-cb29-424f-adfd-a2d9a165d7e2&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f03dea80200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqhPoIPrmYZBvfnQNPh2IAFz_bg1AQAAAJ9RBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:11 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"1","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"2","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"3","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '94', - 'apim-request-id', - 'ba851959-5d47-432c-a5af-2bb3859e2ef5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:11 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json new file mode 100644 index 000000000000..b38a7ddbf8a6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000338-0000000000000677-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "51477ab4-7efd-49bb-87cb-9161096b0762" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d2e6926-bea1-40dc-975a-a0ecf8f0dd00", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:03:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "155" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index fe2ed23aa285..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "bd1ef9032ab787da0c6aee257c7d1810"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2a580b79-901e-4dbd-8ea1-a65b4173ae00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ArYwj4ZE461CjQvA5vZu_gA; expires=Mon, 22-Nov-2021 00:43:12 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrww9J2DBfmbepKPHVplg76JLzkC0JQN_gHJlJGxaFfAsBVKUL7jGv2wS3KtfBMg2DG-mBNe7Td_r42CsKEvRp5HBwmivcS4UEfAOtIQwLDHFJLPj4eaxWh8KOikIIq4JD17t3zRyFxXoKblj2hGP09da_2txfgB69RByuHIN2XqMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-958821260300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AqtMWOhNdOhAimA5GyyrzPM; expires=Mon, 22-Nov-2021 00:43:12 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDh8G7ghsxIDQMo6cCvTiwimD6vfm4_3O-YO7ogqZe4SbfJsr_2lyNRy12mEj1OuKoJQAyxmtMaZ20Nz-NRSMrBHSScwKaKGkAm94n7jW9enW1pYQCMUH3wVfmchdVZEfAJc3ZPVCUeb0R8bzny3EU7jCQOcFPM2JZTXZOLCqhLogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1f32f3f6-7a3e-497a-9ffc-c7553de11708&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f96df200c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AuCIhlhTUg9CtZ_1xMwPxBNz_bg1AQAAAKBRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:12 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"1","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"2","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"3","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '108', - 'apim-request-id', - 'c079aa20-ea6e-4e43-a802-fc886952e7f9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..5e59aed60c7f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000339-0000000000000680-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "68c8d0ce-6f6b-4e33-ba9e-138b91a23bc4" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "577c3b86-916a-4fc7-925e-71f958b2efc4", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:03:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "184" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js deleted file mode 100644 index 775eaf9204fe..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "48ae2bd36a524f40c51f76e37f79ca4a"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2f8a5f4c-edce-4eab-8033-9181f10dd400', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Apvd4Hh5D6BKhSDK6EI0-Sg; expires=Mon, 22-Nov-2021 00:43:14 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFvNrJE_Mo3RC72_R-1MbAMI8bb0R-WlmMF90RynvSX_eRZ8O_gnT3YKaPrTtXSpBS4rV1VNRsmFZxU9cLOakEivTKTvLgp6UuK3vhwY9wl4VawBi83pug1rqhhcRVI-R3U1_CLusAcs1uPBLircJ8HcmkdPEhZkB8ibiUAGLZ2QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bd8fc0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ArMYpudtPAZLiQZH9Gt5qy8; expires=Mon, 22-Nov-2021 00:43:14 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUeIGELqQ1qaaF_5oZhYusfAVL9YvQf0YYO-36Ni3pPtvrUYQgT1y5RZ-7-Sr1m3SGxLgsxo5jPXExFaEwj72zB1kp8HzzcFoFeVj8cTxkpbFpOt0Eh6CFNW0Lf5BG_4M-eWtgXbZ_EI-4b4hZ07vCqvenVyn5-feQcgKt0aOIB0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=9ca10808-f592-43bb-a5d4-23d7172632d6&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-771965e80c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Al27FkhD0xlDlULtvY5dozdz_bg1AQAAAKJRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"id":"1","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"4","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]},{"id":"5","sentiment":"positive","confidenceScores":{"positive":0.89,"neutral":0.08,"negative":0.03},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.89,"neutral":0.08,"negative":0.03},"offset":0,"length":73,"text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos."}],"warnings":[]},{"id":"6","sentiment":"negative","confidenceScores":{"positive":0.11,"neutral":0.29,"negative":0.6},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.11,"neutral":0.29,"negative":0.6},"offset":0,"length":29,"text":"La carretera estaba atascada."},{"sentiment":"neutral","confidenceScores":{"positive":0.09,"neutral":0.58,"negative":0.33},"offset":30,"length":35,"text":"Había mucho tráfico el día de ayer."}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '109', - 'apim-request-id', - 'b4abfd2b-989f-4e9a-b8ab-72a7469aef55', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json new file mode 100644 index 000000000000..7f9949b8fe9f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -0,0 +1,231 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000343-0000000000000692-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3ec392a0-ee69-4ff0-a88c-7fb6a4ccb6a1" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01d842ce-0819-460a-a834-0d76fabf15cf", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 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": "216" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "offset": 0, + "length": 73, + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos." + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "offset": 0, + "length": 29, + "text": "La carretera estaba atascada." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.09, + "neutral": 0.58, + "negative": 0.33 + }, + "offset": 30, + "length": 35, + "text": "Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js deleted file mode 100644 index 149a85ff27d5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "01b84290224b19eda44a99f1f5f8866e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0ff4da92-ea11-4433-97ef-e31101d1f500', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ArgZR2UMPZdBsHLd-5TnNns; expires=Mon, 22-Nov-2021 00:43:21 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrt6XlJGZkt5yF_lnPzu2RsqrbFk2NPNdDqVE8S1i8lddokBlKGZXD-Pz-MTnmasAfuBswk8LHFaRVAzhOzvvCBtiQ886eisWDU38x26AkGIwg3ICHb7Q-v0rLPl7jE4HNMd3-mnKErTd33u9T7E8RYgzxbQd-73wZPxnO7q1xLYsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:20 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec79adf20500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsupHmYHrM9Lljgshlv0YMc; expires=Mon, 22-Nov-2021 00:43:21 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_fa9f-d29W7CzwJKpZtQCnfe7Pa72Y_Qo3nio9weNC8UNohT6ahIPrRsDy_9Rxui3AEI_hMDCV_f-fNbCNsi1qD5INlbBqaVYIF9TQBF8CNhiDcy40f5UhOVK9avHPyeKME9Ij7AruGG0S3UYCZ8pw0nlkxdSVl8WUpknBIoTUkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:20 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=932ceb64-d626-4a0f-a63b-33b0226f4016&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b5dfd0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AgD0MgpMRttHjnbQY843ab0; expires=Mon, 22-Nov-2021 00:43:21 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:21 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"The food and service is not good","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":32,"text":"The food and service is not good","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":13,"length":7,"text":"service","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":28,"length":4,"text":"good","isNegated":true}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '80', - 'apim-request-id', - '9351b2da-c8be-4155-ae18-d9a217218163', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:21 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json new file mode 100644 index 000000000000..358c818e597a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json @@ -0,0 +1,116 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "84", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000345-0000000000000698-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e33bf035-d4b7-42f6-be18-739df6e65ba5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food and service is not good", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3e2af7f-426d-4533-a33d-f7968f2d353a", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "151" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 32, + "text": "The food and service is not good", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 13, + "length": 7, + "text": "service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 28, + "length": 4, + "text": "good", + "isNegated": true + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js deleted file mode 100644 index 0b2bfa48b833..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "02fc8cd878126d65fa0c1a49402ba0b8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd92c3da7-ebf8-49e7-a314-8900a5e56b00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AoBLv4wfWa1AkXE1WG7Gl8Y; expires=Mon, 22-Nov-2021 00:43:21 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrD28C3zP-aLrg62G7JmOYKCnnCp3mE0s66eGCXwSAZcCtlHtswUFvyqc9Wrf7mySEWAUTG9rXSpnvTS9nKBso74X54yQH6ZQrGkl7iEyvwtNrbMGbphGjW3-uSN-ybMUCW-slZ_5AA-ZZgIFrudCQ3-1D14x6a4r9mEJyUI-dw2AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:21 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b67fd0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AvS7YNX4gjVOu3Q0Wj94O24; expires=Mon, 22-Nov-2021 00:43:21 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPXifk6_d1t685YPQa8tbx0LdrNByatF5h9KXl9PvQ5K2nT_6c71Tu4xaxB81HBGsVLPJSUKM0GookQCIALtX8D2Ep-1PaiMff-CWqvc9R-Z4EI02EwUu5To2KGrKv7cX6utL0IjQNc51pNH6vqqrRmu7tVlsh43ky2dgRIwW55EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:21 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=08d25e45-8043-476d-ab7f-66f330d22adb&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '06d88560-ec8f-4cb9-97ce-a11168250300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnOSBuX5K69AmVMHRiIrkcFz_bg1AQAAAKlRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:21 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"today is a hot day","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"neutral","confidenceScores":{"positive":0.1,"neutral":0.88,"negative":0.02},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.1,"neutral":0.88,"negative":0.02},"offset":0,"length":18,"text":"today is a hot day","targets":[],"assessments":[]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '102', - 'apim-request-id', - '4717b356-1626-4bc3-821d-b047b759beac', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json new file mode 100644 index 000000000000..326b90b3d50a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json @@ -0,0 +1,71 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "70", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000346-0000000000000701-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "373399c1-e8b0-4871-b51d-d9e90e161366" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "today is a hot day", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dbc52c8c-e2f3-4b52-ac21-d69c9f8ab87b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "144" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "offset": 0, + "length": 18, + "text": "today is a hot day", + "targets": [], + "assessments": [] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js deleted file mode 100644 index e72675faced9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "734b436c2a291e8271b3b7d3813b67f7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '6ec18eb8-2ebe-41d0-a11a-212793cf8900', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AvUo6vA4S-5IkViQxWDew-I; expires=Mon, 22-Nov-2021 00:43:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-gaG6CdHj0FlfEK6JCpK3x75NXlsYyXDKGKIHNzE4tfA82lh4p0YmFOsqL_HZnxLIrfTmAICbHJhFT5iNKmp5wg5D19mmcTSV4Pd0NzR1PYoC6k4tigi-jlz0TLmKmOJJtXjRCa2YJb1hTASjQMGK0ZZ1mCOEq0-rpaJAeQ-K3IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:15 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-95886f260300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=At0ZHGGFbGtJuRlvbjEFeus; expires=Mon, 22-Nov-2021 00:43:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgBYOSnA1z2lO4563K6Xe7Rzk9_rkKJU0fOA2AKMcfCNlZZeLejYqxIv6xtSQU0oIF9nIZr_Poqi-veOkXSReZqq9CKge6d0I2Kvqk3DCZa-89NiskUsA5_k6EWjBxIIcRtQrZ6mUWYCkU_zZRmJjAwWrgjsk4PPVqMqCl2ZiplggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:15 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=be072ff4-e339-4842-b2fc-e088b3afc4b1&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-77196ee80c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AvlQjWfhIJpLtvCz5bu75pU; expires=Mon, 22-Nov-2021 00:43:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:15 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"It has a sleek premium aluminum design that makes it beautiful to look at.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"offset":0,"length":74,"text":"It has a sleek premium aluminum design that makes it beautiful to look at.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":32,"length":6,"text":"design","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":9,"length":5,"text":"sleek","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":7,"text":"premium","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '5081', - 'apim-request-id', - '0345a514-c93e-4e71-ab16-47c56cc97bcb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:20 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json new file mode 100644 index 000000000000..53f233ade17a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json @@ -0,0 +1,115 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "126", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000344-0000000000000695-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4058c0ff-36cb-46ef-997e-15eb5b2192db" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "919d86ac-0d35-49b5-b8ee-13c1420ad9e4", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "offset": 0, + "length": 74, + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 32, + "length": 6, + "text": "design", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 9, + "length": 5, + "text": "sleek", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 7, + "text": "premium", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js deleted file mode 100644 index c95373820b10..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "da56d9c74392fe1ab68ada4cc5812bcb"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js deleted file mode 100644 index efcab380a1dd..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a157febd45a30a9364c39af353c5a125"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '90cb83a9-1322-44ee-aea9-6251df62f000', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AiJzjdrWuv5Kkyk6_wKGA_4; expires=Mon, 22-Nov-2021 00:43:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhrHTVHUZG0qEwaTxCgvjTzUGWWH98wOBlW3nKYwByZv1eig46Tlts5XXbL65roWL0VAjK141WBSb_HiHUOrMdgNxIBGo6Mr0a9tyS8CQxv-lSd9FZ9-fOsl4NLzhxaSY_VeiomvXCBL2zDGX473ibHClNB7k2HoOlM7tQKZvWjggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:13 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-77194ce80c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Arv3VgoUf99HjbuPGoOeMUs; expires=Mon, 22-Nov-2021 00:43:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKlhhygEitz-yZy8rRTEC7KBuY4zoD8kp0KgwzGrzTc2KhaJu799kZTZlVO_eSZE4tBK_9lUG1PAW24ice2u6Ltg07k7Q5oY2cW8-PmWvE9dh5-SH2aIwip7wzxLzRuJEUlOL1vjLnCZTzHXEgg6b1GGUye5I8pr1ULnjwsAfEOkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:13 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=bd8dbbfc-0489-459d-bdc8-c9d6f07ec7c0&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820004f50300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AuxvR5NwyPBHgzlyrwwQyyZz_bg1AQAAAKFRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:13 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"The food was unacceptable","language":"en"},{"id":"1","text":"The rooms were beautiful. The AC was good and quiet.","language":"en"},{"id":"2","text":"The breakfast was good, but the toilet was smelly.","language":"en"},{"id":"3","text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","language":"en"},{"id":"4","text":"I had a great unobstructed view of the Microsoft campus.","language":"en"},{"id":"5","text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","language":"en"},{"id":"6","text":"The toilet smelled.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7', - 'x-envoy-upstream-service-time', - '163', - 'apim-request-id', - '11623e17-1ab3-4bd5-a25d-cafa1bdc6bb5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:13 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json new file mode 100644 index 000000000000..5c8a28c5f97c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json @@ -0,0 +1,700 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "622", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000341-0000000000000686-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7252ff47-c9bb-4a4e-bdf8-99bae5282d5a" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2da789a-adf0-40ca-a29a-77d5c5b56f52", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", + "Date": "Fri, 18 Feb 2022 19:03:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js deleted file mode 100644 index 8807af96c40f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "29742e141f59dfc99d625ed5ffffe81f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2c465a33-9130-4f83-8f8e-0ca667188600', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AoKhRRzJ3vBLocpvb6vd07g; expires=Mon, 22-Nov-2021 00:43:14 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPQww-vOI9DBwzD9kzmQj72t702k-tczRR9o1bZcMcP9cnsorZTjYVcg7trn-vmHrfi-jRoshOu6wXPsHtweNw2iG5cqx9Fblw4ZIJTJaUiXup7aqBMk-cqoyOba11ifcGJNDracEiJfvLb-J_ZLBw0cSJrxLNCbZe3S0nry-qBAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:13 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-958858260300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AtmcRDIYFStKpUV-0qo_Coo; expires=Mon, 22-Nov-2021 00:43:14 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhrkbW3AzSLWEQtq38cj5wI3QBF3s6aAwA0UfaD3r966CjjFT2D_1QAaDlKjp3iruqxP9_gCm0Q2_kRZyD8u0XjjZ9z-ZuwAgyGAJZ78UPzXhC3BGhUw9ImVPAqv_R1jqXHgygnbWm-7iyksXhTVQ6wMbxbPOY9D5PcRpupR9uvUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=95fffe07-18b9-4ebb-b9f4-ccbe57eaa934&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406931c50500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AoxSlInHw-ZIigO0mfSozJZz_bg1AQAAAKJRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:14 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"4","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '106', - 'apim-request-id', - 'bf86be7d-82dc-46ac-b7f1-1c53e9a1d09e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:14 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json new file mode 100644 index 000000000000..6cdee96fcdd9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "531", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000342-0000000000000689-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "35c90663-82b3-446a-a917-b787bb734922" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2bf4d9e4-b0b8-46e5-ab3b-78371a09f38c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 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": "116" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js deleted file mode 100644 index 56146259ca16..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "8c94fa8da2c7dc61a44b79f6f91a3472"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '62fbf2e0-4b87-4547-bc4e-414a66c64b01', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AvRAYpGD-r9DqbsPjPOaFWE; expires=Mon, 22-Nov-2021 00:43:12 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRJh6n9AR3i0o5daST2tAzKSFfSscCQJQJFUQr8xWD-xGT0zDzCIEWx0YXtS_C7G0NKqlVux-zVHGpZGNZSEdZCwMnHjo-95nnsnCGViVJnyZlCBC5vipRrM_jTagvObHa0wYn5zcFkIb75vT86iLhFN-woZAM3ReHYvd_sGsmSMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fd4cdf0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsBRMFFqSXlKouswj_8q8gU; expires=Mon, 22-Nov-2021 00:43:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd-TMUMxlGqjLSqUaO1vaSzfL77tbSDJkT7OX5sF3L8ozdR-RhMNvt95jCq-9JoynSuTZWOt8ZcNQ76aivi6NkzlIi_H57AUd51i25oON-D__XWD9V6R5Wd7RRvZnrOlMGuUakjamuIu0BvPXuHXxEBZI0yKryt973ZO1tspOXPYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=367700d7-326e-42d1-b93f-f69c4544b631&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bb4fc0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AvsI1JNpZOJLo61WZPbx7Ihz_bg1AQAAAKFRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:13 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"Hello world!","language":"notalanguage"}]}) - .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '5d9c3fae-b5f0-4c2f-97ae-4ebf208bc7fe', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:12 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json new file mode 100644 index 000000000000..508618da9583 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000340-0000000000000683-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d2c312a9-87cc-4e01-92d5-f34937ae5440" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Hello world!", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3fc76ad7-b9ff-4909-ab0b-86af119ef54a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js deleted file mode 100644 index d5f1d1c45d98..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c05939b25e4a8a5b449063e05b2d2fd7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b96e161d-1248-4bd4-b988-cf34dffce000', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ak7LklOHSuJAtdaF4zGTBGQ; expires=Mon, 22-Nov-2021 00:43:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrt4WgpEYmemD9Dd42m8t1HzhtfAya2TkkBU6eMr2ORcR3QWGo-yYXoxem4NmY2cmOl6cnk7tMrddZ3f003LUlBj0gM2LPLpyqbqju12WzDuE90s1nOA5mM8UW-m130Nqda-2QlRoNEym90crCpjhP-cJt_zU5dAPBzXSsCV7SWKsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774ead890300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AveYZtba0hZEs8qD2v4uSPI; expires=Mon, 22-Nov-2021 00:43:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXN8stxWCNAVC4XSjp-Bfg5H5L2VkIpU1tVI9zCOfDqMbgFMCcQM38XZT5AN0KkVITRNs0beP1hypowOpbkg-rBI5WZJZMmDoJRoCdf2sJg50McGTKh1cT_1A1e2LLUGsLN3eQMuq2jiXt0_qp0sSEIkO3LF4UJI8sLIWq00-eLQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0d9e8e3a-5b4c-4926-ad0c-a68eddad7238&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-77192ee90c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aq0jpqTOIJ1HquJ7T2wikkY; expires=Mon, 22-Nov-2021 00:43:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"impossible","countryHint":"fr"}]}) - .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"French","iso6391Name":"fr","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '7b5347c2-238c-4555-a047-e7d1607bf3b5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json new file mode 100644 index 000000000000..b6d4b28ed744 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json @@ -0,0 +1,55 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "65", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000348-0000000000000707-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1b084407-f07c-45db-ade1-8f8d11119ef4" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "impossible", + "countryHint": "fr" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "93fded37-2232-418c-88da-2791b6dfbd6c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "French", + "iso6391Name": "fr", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js deleted file mode 100644 index ffdc0ef76506..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "9ec7001ef3eb203b0937c0c2e70a4012"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '3d9ed96d-3627-4b37-b1ac-6d83b59f5000', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Aob5MDrv7Q5GiW4JyEEWTtk; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrl6RdEbg2Z6wb28iQMLncQNv_dznJ-gaYlLlvWkQXSKH323CiDojmjs6pm0FFVGz_GqheCwMy2lNtg20hWkRxseEdWZiKQ8PkRn86pGvf781WOaJjXQhgO2gW0Y6_uoaMZs3uvbkj1EJke-soBIZAWkIDA3aCPX--iJjMOVc3uOMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23c06b0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ag_f2Jn1BsBLmLGDxJlMLQY; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrU3Tqh9r7G5Ti7m1DrpHWUAu2j_IGW0Ogg8dYmt9P0g6vLrS1I3HkKwjWPuZdU54kmEwqRjr6mnatGefMNpdlK8KWm683EFHN7A0HjnZXo2llYjkA0t2R8REpRjJU9MaOULlpn2ZNSI6fFP4scWcx9P3zwhd1gvMaS8mjlPp9ibwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=44a3aaaf-84d7-41be-851f-df7f6c52f30d&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b4617000300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AlooWqcSrsREq57s8l_9ja1z_bg1AQAAAKxRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."},{"id":"4","text":"I didn't like the last book I read at all."},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":"mx"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":"mx"}]}) - .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'd200da96-0409-4207-87e0-0db60ce38037', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json new file mode 100644 index 000000000000..7e826b5a2a7e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -0,0 +1,121 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "651", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000352-0000000000000719-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b7447568-de05-4edc-b582-d43df7f62a73" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all." + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "mx" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "mx" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "16b03420-2dcc-4f96-bfaa-9e1c5c85d889", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:04:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js deleted file mode 100644 index 949fe826ec81..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "89cc2d404cb94fe1fea0b7034c65a3d5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'fa95e27e-b22e-4b92-91e0-effff8372300', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AlJfmfFT87tOikgbTwxbOKo; expires=Mon, 22-Nov-2021 00:43:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDVheL0dEnEngR3mKb0F2VD93RYvit1VoJyMLp_6_ui2MPv3yw9c_7ulQsFItuKGB8XXQVpZI4dT5VS-8yYgcZOsCf6N1eIk-oRw3s5A2GWryteyuE2lG_nOT89swL9B2c6abpc-I3QjpRjGLlY_05aldDNvlz8quGzJqGZmwppogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec79d5f20500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AndFFGz8X_1LtMTCtb9t6SY; expires=Mon, 22-Nov-2021 00:43:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraUDpoyn9GHdrUh5EKUejq8SBhH1QLxXX6WwtfMepYmD2bTpVZSajW3b06JFakYaMe1ps1YRSa0yqGU55FL02cWAGEX_IQduN5yfSrbx-jcbSDUqtlILSCTp4XaHyGLFJwllpqN9hao8Nr8yQRKjEA1hdAS0WXVHlkfc4cfu2jQAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=060d38ad-791c-4e53-aeb9-437189b9ebcb&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b808a0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AiDUsybz8E1AorFXp7bH8yNz_bg1AQAAAKpRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":"us"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":"us"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":"us"},{"id":"3","text":"I didn't like the last book I read at all.","countryHint":"us"}]}) - .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '95c287b4-c0b6-4870-bd26-7a90fa410ab5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:22 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json new file mode 100644 index 000000000000..ef0cddbf760c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json @@ -0,0 +1,97 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "506", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000347-0000000000000704-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "68c717d7-b46d-417b-9679-a6b91f8cc91e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "us" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "us" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "us" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "us" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9ec9534b-8a19-4cb8-94fc-ec32696b7975", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js deleted file mode 100644 index 81c29829d821..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "34a686d31604ca12247f82344cf7f08a"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e0621b67-57e9-4582-ae21-812791c86200', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnfMF4DxebNEgB64gMWvicw; expires=Mon, 22-Nov-2021 00:43:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjELVSh0TpJGVS6vfXLs-SE4u_BorzCTtsHeKwg2mpIcSOiSeDs9jgdWL0TmHb_RTiD0cyUNKXR_nMTZUe5DJmD1NTVnxBhqdANjQyf_1xmsGuMbc4gsMRMn-k6Yg84BEhv6AWqEdlShu86kKWE6sdnB0PCpzUL4mRP6VfO1z4vsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15bab8a0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AtQKPRgf1_BEpvuPgq7TI5o; expires=Mon, 22-Nov-2021 00:43:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIdPMd6BTLEXuAr1mvFs3RvMoJsYGypGl14KZZWurdYcDmFsaQDPhXJTvgRjk7nmUKC5IbFKj3pFDANeAwgL0n_r6J-_djcn4NlkywKOMgD9ionQtmgCHNQYQDK35v9d2t8dgQpR5BdZavjn7QUJyjEJt9S8CeltY7hB4Cv7USFUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1b5b95dc-a037-4bca-b80a-91707dc1acdf&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f28ed40400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsJ4o7wX22RKgLCOa-MaSqdz_bg1AQAAAKtRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":""},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":""},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":""},{"id":"4","text":"I didn't like the last book I read at all.","countryHint":""},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":""},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":""}]}) - .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '19', - 'apim-request-id', - 'a538a044-d593-40eb-82bb-aa236d986964', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json new file mode 100644 index 000000000000..9b72ea15d297 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -0,0 +1,125 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "715", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000350-0000000000000713-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "19aba295-ed03-4d6a-a5d0-f286262e62e3" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa10a2d7-8ffc-40fc-aee0-ca13795f7ced", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:04:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js deleted file mode 100644 index 8c417c01b1fa..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ef69fca0065615995d37fba2821ced2e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9563289e-9d8e-4f8d-8b55-81ef0a4ccd00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AmsJbTpxoB9Itqve8HeZY20; expires=Mon, 22-Nov-2021 00:43:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrtu5-UI8R5Mx-ZNYxikJavih8Vm78L3rcEY61QPuWNK456NgaZcprBOOiikphdB4uAjlrURQeHCcIxT0MJxWOJOSkUiKs0LAk2BJ8TbQeRUbprkMwrU6J9lxryylrFRzLE6Glq-6AnfVw5T6J3VINItNy9FriZigY7V9gFMTwP7wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fd9fe00500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AoC0phvcKvdBn04tEIm9YGU; expires=Mon, 22-Nov-2021 00:43:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrD8hC2HWRo6o2oLX4JVdwroe0D7Nxh_nGhXCBIKOTEFtNsT-xQiLPgYYgCKHhFuCxpSYH7mLJjNzPgAJsp8IrTzmc35T4VOEIMKzoRuQNNLlg8Bm5GTjj86nZWj-d9lfXd-QHtjyz89OFMIk5B-xSzt9NFjMdF1VFAWM81LQLxcYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=7a7c94fb-f231-4768-9a8a-f71b5f31463d&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820034f60300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AllRZ-SRL_1BhSn0KY_OxVQ; expires=Mon, 22-Nov-2021 00:43:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"I use Azure Functions to develop my service.","countryHint":""}]}) - .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":0.95},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '48bffc97-ae82-458f-8e7f-1b06fef12212', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json new file mode 100644 index 000000000000..8e4ec72b78b8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -0,0 +1,55 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "97", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000349-0000000000000710-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3c258be9-d3a2-4ba7-a89d-a370a7c99db3" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I use Azure Functions to develop my service.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "20ceee4f-1396-4ee0-a2f7-0c1f24e90823", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.95 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js deleted file mode 100644 index ce14b08bdfab..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0f2053daa7f89a4ab190012374379df9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js deleted file mode 100644 index eb7aba0424d2..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js +++ /dev/null @@ -1,130 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b5935ccd1f790970d86fe93b4a0414a9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '098749c4-bbe5-4c83-bc8f-198969085100', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Anul3xZNgSlHqOV263ax6ig; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrigcq_vvbFL-SI4HAORbn0T2_NABjr4xEPgDrDr3EtZDcZQvojUFRPy7PTgsAdjDmqNFrzIFHpiI9EjILPESPuglsjzXnpFh5S2N8Q09bDp4whKBqUJ2BsDE4nVHdXdQ_Wp4nffTRY3KBNNtzqP5jNMW6W2SD-Uq_HfKMj0QjyV0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:23 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec7911f30500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AuGB1gqbKHNKj4PK1odkwdk; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjmMZiEAaRuupcgJoFJkjg6ALS0VX88D-bZHEnMGp4QDoh5TSTP9oFHRs2oenYiObL6brlcS-syPmbewz8VjSKLfFz02vDwugOmE0bGh8oXRwuj3KmF7Y7KflGsxEUBTfeyCegXkvUWJcKSO1S9dFALl6RubmsRbicr1ZRJKPsl0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4392ad83-751a-451c-9de7-8c6bc6da75af&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-771958e90c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ary0B7dxCH9JlEKrCw1Rf5M; expires=Mon, 22-Nov-2021 00:43:24 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"hello","countryHint":"invalidcountry"}]}) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Country Hint.","innererror":{"code":"InvalidCountryHint","message":"Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code."}}}],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '4095a1bf-6239-49ee-91b1-723bb772432e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json new file mode 100644 index 000000000000..aee2f66ee75b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "72", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000351-0000000000000716-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4b657937-7313-4f1c-a41c-c2a0f97efb92" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "hello", + "countryHint": "invalidcountry" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22eebac1-fcff-4bbf-9841-f6fe29601eab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:04:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "message": "Invalid Country Hint.", + "innererror": { + "code": "InvalidCountryHint", + "message": "Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code." + } + } + } + ], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index 1538e25ce1b3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ff532ec002c3a730a118f602c709956e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '70129644-fe90-4e5e-9f13-b38226100500', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AhbG7ieHtzJAnTfer0i50VE; expires=Mon, 22-Nov-2021 00:43:29 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraaHcZpsSAgfVIyCDzRPMEom-TwX319jhE7HYcCuhTwK1l-paOor8eV-hXNtqb2A33HSFQq01_fNgpVWqqA58JVzwtsv5XqH5-kWESnLq5IkqObE9xcdTUP74JD3-PwzJfMgYN-ysGDfZeA3oYPf_xHxBvFoa4rgTCvXvHNvyXS4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b25fe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Aq1FwMtYCABCoMkwMFzsSRE; expires=Mon, 22-Nov-2021 00:43:29 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_iJa4HHwYWM1yWlkXjbd1pIPQPaXQYC_qPbU8ZTR1et7n7jtvk624CXP1I61alYpFJDKNsiMALGYLYpG7W_EK43kx7xe6Z4SW-79oQOEQASCfAQ_GxmB3MHe5x6ZsEeFS727knr_8akQ0SkFlKVsLs676MEydWD-CRcDOG3kZnUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0a7caef4-7b6d-4976-9ba4-065602ae7961&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9418a971-639d-4ab7-bc0b-6fb43b190300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsgY99HdV3xJsaGTwXBlDGU; expires=Mon, 22-Nov-2021 00:43:30 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .reply(200, {"documents":[{"id":"1","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["entire trip","Space Needle","Seattle"],"warnings":[]},{"id":"3","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"4","keyPhrases":["last book"],"warnings":[]},{"id":"5","keyPhrases":["Monte Rainier","caminos"],"warnings":[]},{"id":"6","keyPhrases":["mucho tráfico","día","carretera","ayer"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - 'b5b8609e-d811-4f67-aec6-cadc252cbbda', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..39985348ded8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,122 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000361-0000000000000746-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "24ff8b43-6802-4ddb-84b9-5b4d211f7408" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "130429c9-67a8-4a22-9eb7-d0dbb5337d26", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 19:04:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "last book" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "Monte Rainier", + "caminos" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "mucho tr\u00E1fico", + "d\u00EDa", + "carretera", + "ayer" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index 916505a2d4ef..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ad87a0e6d3e4602e10fad4d7f20878a3"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'bb15853b-9613-4ca6-a241-74b43881ff00', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Am3N5DR0bSpPnmeJo_cHyCo; expires=Mon, 22-Nov-2021 00:43:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFjooPuA0M4655TTxKLuldbK7pRQd_r_580FMBcPuFjDTXUg4rrVmRrtjJTQPUvEcimu2TsWfYMJPEP37tjXtvlIsi-CjaEOPxyl0MWv_4TogFNRin8bH07dIiRkhqueE_FeYhXmuHxPi4MOzDO-wzNRkDKPaNgCLi6h_o2vaHAQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:28 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443b37c0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AuVnp_EnDSVBp749VQQojkY; expires=Mon, 22-Nov-2021 00:43:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraruMy1DEZvuQk5HVo31bDVb6QWqZKLE_a7XBQOoeoB18KMgnpLk6mcJQof9RXv-sx4WjHiTZtZHmlH_81xvoXXHBFXI_45l5cKXfGJxFnwKDuL6nqJCb0Kd4hw7uj7u-0C3wvDy8ZBY7qNmNHy1j387NgzGFlNkVMn88994p4D4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:28 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=9e40f275-7ba0-402b-9c12-e54614c62c1a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '956061d5-661c-4b1c-b3b2-6a47f2050e00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aq6UhLGsj_tAg5qqcanRDk9z_bg1AQAAALBRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:29 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:28 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - 'd4e55288-263a-4c11-a97b-fcbad8e003bd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:28 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..41698652125e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,94 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000359-0000000000000740-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dc82bddd-afab-466f-8223-7a05229b467f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6a4de130-d462-4c60-8cde-8fa6c67e2e9f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 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": "138" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index f226ad6c95ec..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,132 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c75abe4f2185017d992d99f9801ed2b0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2a83b11e-e082-4e18-9c58-cda041a5e900', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AuJxW_QSaS5IvkBv1MMRxws; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxzDfCn_f3xBqzZj5OGBEZtftGFwIdu6bSZaDpOnm6z_Pe-40OeKLRjLlwQIhYDxjQsQwHeeaeZfvlCqGXXz97ZJa1KrJe_IIfGqZrYdpricef0jp4dkirtBe3icrOKbVv7O4WQV2aqVI3F2PiDCkBatehT98_RwMeqPlVV4JiAUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:27 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f211d50400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AtlFBUHE46lOrKxPmRlmpZs; expires=Mon, 22-Nov-2021 00:43:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8aHW3qRaWWQsgbjigj_gme09YWI2fd5TUxQpz4dZSZdWmRVFI_MF2hGAtB4kLbnTY9XoSLXlP5YILAX0w-k28T-vCx5mIfyvoYItgZWr3NmZ5Y3u8Xb--fC5IpARjXjXlV6EZvwo5oWq74s8-qWRBB1h4gy4UOGI0dS-HXKwP-UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:27 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=24a6d937-6973-4d8d-9e88-905d2a43a369&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9418a971-639d-4ab7-bc0b-6fb411190300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArXuQcOMHshAsgD3JM6f-1Fz_bg1AQAAAK9RBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:28 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '20', - 'apim-request-id', - 'e07ab625-322f-407a-86e3-a48668df1ea7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:28 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..316ad210eb1b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,94 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000358-0000000000000737-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "17fd96ff-fc0e-459c-9fab-1dca07e342e0" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2de6244-dc65-4cfd-aeeb-8216c88fbc27", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js deleted file mode 100644 index 5ca4232a9555..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1da9dde1005954f5437f8bb9acccb669"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index 64949f1f1737..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,130 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "07ba90642ab2e400b301dc4c52ba2470"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '401841ad-241f-4790-97fd-e84a3c3a8100', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AsCyzcPg4ulGtJySG_eChHg; expires=Mon, 22-Nov-2021 00:43:29 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWCB1FNa9tvBnhvpjym-UxDQdFAcB5m8vnxB8dzyIBOw2B1DztYAWtdZ4WnlxCjdDM-gmyEvy2jV9DxTC8WVYeKJolqQQVLAa4FPMn5fb2D65EyaQ-RiXe2YHo7y4uTWppqI03SCU7aSCxPquotyV1cvN8OBZ0omBw-IX6hBPLP0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f23fd50400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AuxSMl8oZJ5Ju6nl9G5zHdw; expires=Mon, 22-Nov-2021 00:43:29 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKNbXFtZfCyD5y7945UnM2ICaU2p3p4BStWW4fb3YYaHCehZet4pdSsTOSDSV6KHTdUxYlJOBN-jK-C-8e8Gx-QbKTAi7bBp7iAZLka3K_nEQkBH7al7MpXxrnkTsOQmNAa3mVTnjQVhHOndg8a30B1KSlREC7aDBmWK2lLTotq0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1574255c-e593-4546-be42-6f1979c8dd48&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b1ffe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AktRFx-ZCfhLnhJHeH1fBc0; expires=Mon, 22-Nov-2021 00:43:29 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '9de1b1ae-adb6-4e1b-9c4b-f4a74c69a6a8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:29 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..ad65125f0842 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000360-0000000000000743-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "abb99cdd-1b57-402e-bceb-574a9ece7bbf" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b6f0afd6-3f43-4e1f-87ee-e049665ff038", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "2" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index 899478950bc5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "23549fef03bb60ac4471d7a0e28e0946"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8d0d1cdb-8cdd-4081-98f1-b8911705bd00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AtG7yttZOFlAml2l7QtQzc4; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrk1R1EPTAZtCuygvYAKmwYGy74SUECIOcn7i2hLj0Of-WlD21bSNBZ6xW83AD010RA5oRAC-Qs0pYGZah1f8rWKfiwuMQjcHToGke8VyizMTov0Dx-LYtxipsCEp_b6rKjdBSnHIvFlsW837pIuNJfH1oDm4AeKT0Md03f57NtaYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820098f60300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AopbYneBgLdLpiGKc7cSzAI; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwdHc4lve_ZrJ11QShITHTfENpPEldNvWnvKBEEBiWQNj_J7imR4nX9OTEZpbesW_cMLPuyKAgbHkWDOmlLFanbnXpzMYle9trm02PaD4KEnw8r3s-xCN2QjXXB9-pmJCoMWLl8Dkm0Xs20ldLt5qCq6MUCDn0hrVB9G8XtokOlcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d1b58900-8eed-48fb-9acf-1c27d36aa2d3&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-77199ce90c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aq5wwOD6fG5JiGp7-nrVjkM; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"id":"1","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.61},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.96},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.82},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"Monte Rainier","category":"Location","offset":29,"length":13,"confidenceScore":0.85}],"warnings":[]},{"id":"5","entities":[{"text":"carretera","category":"Location","offset":3,"length":9,"confidenceScore":0.81},{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - '3d9034a7-80d0-413e-8c81-14046d6edf8b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..36fd24667948 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,186 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000356-0000000000000731-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a06741d1-9129-48c7-8862-d207f9e37652" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7eaae69-b528-4b7d-98f6-11c9ba5da36b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:04:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "Monte Rainier", + "category": "Location", + "offset": 29, + "length": 13, + "confidenceScore": 0.85 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "carretera", + "category": "Location", + "offset": 3, + "length": 9, + "confidenceScore": 0.81 + }, + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index 5416efb884c0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "83584ef1a3c2eeae474a1cfee3684ba8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '3659a43e-c4bb-49eb-974a-66314eda4d00', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkD1Mbti4yRNh0U4s9rPd5M; expires=Mon, 22-Nov-2021 00:43:26 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCDXS8QR1U6rKA-SkDYheNz4xXRinK6OzOeFcJNF69lvxByYxJrlmjzNw-Cl1R_GdojZsp1VMxNgAeaXlX7qpOKnCdSyyeovxPOf0Iq9foS3hWXx5cdwkC8p1uDI_OiuH3FFDgBmb_1rk3ZOfUJniT1LgibwETUaDPN6UT86h6HsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:25 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443707c0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=As-ZwHIhOrVNiuDXRSLwa1s; expires=Mon, 22-Nov-2021 00:43:26 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNzy2IFU_c5mMwYiWh7EnZf4rvu67D5u3NDi0eEC69mwIWFz6sJRoK3SXALmy8fB5SfNtNvGEuUcBV_Xiyd8ffbYq_uOtPR_YzfzkGzfxHawDiBQMLVYefN0u6Yb6h1LWz5WPGjfYyrfAMHQhSHlPThc8YUN-ysl4dP1i2TCbA_8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:25 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=cbbaf725-d5fa-4115-a157-97088e3cfde8&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f2d8d40400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ase2cbSjNWVJpLaz_0tqvTQ; expires=Mon, 22-Nov-2021 00:43:26 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.61},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.96},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.82},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.92}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.92}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '31', - 'apim-request-id', - 'e9422c8d-673e-4328-8bde-9971bcaf1ff3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..845e2a3605f5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,160 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000354-0000000000000725-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5fa22b48-d927-43e7-a334-62741034f4de" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7bff36cc-61f6-42ed-8b0a-1861293a97c0", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index ae0f92e4588b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7fb8abf5b43b82fbe7da1ad591b70f07"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e84930ef-4629-4c61-936c-9ad9dc6bd500', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AkObSzIs6MpOsTiaITbifQ4; expires=Mon, 22-Nov-2021 00:43:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraWYlgT_BaI0tqAnXKn8meVYCpIuJNexjz-Tmi2kkZb_9MFrDN40HRqn-FZQyn2Earu5r5p68jMMWLFQa2yfY1zUq8ToCK-YnrGICe_RdL4sNwETCSVn6Uzlbq7NLbOgZlzffGwM6gNBt8Ifu_piMo3XlctOC0LX8TMtNC2iBCAUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-40697dc60500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AmOpYzHrIPpFsdl9jmVwlm0; expires=Mon, 22-Nov-2021 00:43:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqHDwod3OXn7TsHLojKeVmWlB620xfRej8iOWUJbvVk6yPC-77oJBZcnr7MjyMfMfj0ZL4FHr1DQcGXvYg9rev4zCuixkKwVFhxI67JZ2e8PG0Jqq69-DPzKzMi2n7rHJeWkRZrp2MSnTTOdmvVY7H4x3547d1HasPdIz6lwBemggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:24 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=6829c719-a8dd-4791-838d-5ca6963bbd64&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fddfe00500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ApdBnmOamI5BnwwWLVxOdqdz_bg1AQAAAKxRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:25 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.61},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.96},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.82},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.92}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.92}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - 'a88620d4-222f-45bf-b161-3ad1f4d6ad6a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:25 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..ceeffb06e6a7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,160 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000353-0000000000000722-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "77d1ddf8-7237-4d8d-adf4-517b0fb8e436" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27cd0c0a-d8e3-407a-af00-bf1b9e06a03f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js deleted file mode 100644 index f39827672886..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8cc7f975-e266-440e-9d62-d31522c25f00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ahscqa5DaGpGrscQjNm2Trc; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVkZXZy50kf_Z3pQYuyVoVLm_puP4bu9fFvzUp2Iq-7ZShwULiELMoHyv0l2lAM8rIkoRD7KcIkggyECUDQ6ofQvLACRs5EwQIamP3NKd3WQ7vYtauXoDWj31mtNS_Y-2ntWYFCApfIyQBhXv3vvsQvprVxjUBJQNZPHAbcaG0JggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:27 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f2fdd40400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Aiml4X6sfvhCr1DpHKbaGsg; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJ9ieypBVUL-pWkQqrbk6N-F6c6Sh-sdhqf4UtVjTgBGXOiJBBXv3dvTA0Eg1VcpwslsuMGEEwaeAC94mh3y4bm_u6jK3DBrd4dR1KG52JTBSDV3YWawsPw0rZTbkJG-w9hZ21eiiRsA_V846WMM0Zf2tGsLV1to6xyZ9ENDDEwkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:27 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=40bd64b4-a06b-4537-85cc-8324077717ae&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-958896270300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqJWk0aba_pFsZFN7W4XlW5z_bg1AQAAAK5RBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:27 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:27 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '83a4cb3d-ee6a-46a5-bdc2-3382dd22c4be', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:27 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json new file mode 100644 index 000000000000..edc2ec6f7a7c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000357-0000000000000734-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "aa629646-ccb9-4c51-868a-ec2c6df6263a" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "5e033be6-10ae-4015-b177-eb52c62ff535", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:04:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js deleted file mode 100644 index 1185910205a2..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "bbec3f3747719fefd0480adad1387e7d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index c05e7242e9f0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d15e29b1e7c287a6a7f9f4eb38f2a277"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '26957a6f-fb02-480a-8569-5da04c360400', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Au_ezIGhL6JCoZ65rMwb6NQ; expires=Mon, 22-Nov-2021 00:43:26 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrswl4dfwQ6-s5UxE2r0APX3l6udn0GMclyaRnNnU46gtttESrkmzvjhkyf8ruSt3H-f8-pdXVvbL7bjqDFi80hpqzgRqzHXKXE_f-VxrBdpAjrAxvILqc9HqFRQ50PWg7OETuuhTJx1CO2Q-Q6mBwizRJxOBbG2RfKv0ezvcFJtAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bddfd0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AipkZg4dmrlGhLg7l1DLgXc; expires=Mon, 22-Nov-2021 00:43:26 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzceX-QB5oaRWXHxVIBo7L_S9iwMookvqDCYgQPjt2ePgnUMKB89Gof6hvk2yJbnqvMvM48sNjfSHL8HtX8x9fonlzhkMPyDiln3bBarwSuE8Jn6TILXSYfoIAx_oycEfp8pt9c31SX01rG0pR-za6K1mgcaAsTUCDU01fkJDloggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=6aaadc31-a7b9-492f-8828-c3af5be61482&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-4069a9c60500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArSVTXnoKxxPiBifaVdX1aU; expires=Mon, 22-Nov-2021 00:43:26 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - 'b20558dc-28e1-45ae-8dbd-103b4741a99c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:26 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..a48758a1d2ba --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000355-0000000000000728-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f49f59dc-d915-46b8-a4e7-4792e4400db7" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1e23bcb8-af87-44b0-936d-053342128cc7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "2" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index ed9119104c28..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "9063fb3ac884b0e8a06b081f163417b9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd838f7f0-7ed6-4115-9132-f620b768e900', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=As_fhu1EyOpLrWBgmQuLJ8o; expires=Mon, 22-Nov-2021 00:43:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVJY_6WrMtzJH_SC9_hTZlT6EObZ66BFkPgFxjLFjYGrmeV5DUJr71l8O4t3MmwE9KN99C0f8CqeJRoBGP6WlH039UyOm80XfEP0Ivr4Ga0O_oq0TX7dpMF8LPxurlhTSLP0ECVZSGP_M9cAanzTAIujC0t-rWJU1AjwW9Kv2sIIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23e86d0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=At10gW8-jDJJqaJAbxqcOjw; expires=Mon, 22-Nov-2021 00:43:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVQZAPuFrVniN9RvqY0Hoz9-XWZwTYj5wjJDkqkXQQ_tTqoIBZd-5-7vHrgKtoofWZnVI2L1V2feAhr2fICuuGrdqt-pVikR1iIKFCtFZu4psIqgCvWeChuump46_6AwrY3farCwMQ5UhOaMR15Kei15kaLqKcc-b1f8vppGkjY0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e5d975c2-a72b-4fe9-b694-9dd70915677a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fddae20500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Akq1MSp2JcBHp_kJj6nPxBY; expires=Mon, 22-Nov-2021 00:43:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"id":"1","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":26,"length":7,"confidenceScore":0.21}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":65,"length":12,"confidenceScore":0.42}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"2","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":50,"length":7,"confidenceScore":0.2}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":90,"length":12,"confidenceScore":0.36}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"3","entities":[{"bingId":"296617ab-4ddb-cc10-beba-56e0f42af76b","name":"Saturday","matches":[{"text":"Saturday","offset":25,"length":8,"confidenceScore":0.05}],"language":"en","id":"Saturday","url":"https://en.wikipedia.org/wiki/Saturday","dataSource":"Wikipedia"}],"warnings":[]},{"id":"4","entities":[{"bingId":"9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906","name":"Monte Rainier","matches":[{"text":"Monte Rainier","offset":29,"length":13,"confidenceScore":0.81}],"language":"es","id":"Monte Rainier","url":"https://es.wikipedia.org/wiki/Monte_Rainier","dataSource":"Wikipedia"}],"warnings":[]},{"id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', - 'x-envoy-upstream-service-time', - '50', - 'apim-request-id', - 'e2c7ec88-a6c8-4d49-89a4-f6f1c8d3d821', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..eded06d35a74 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,191 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000375-0000000000000787-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "88a2d463-7c8d-47d9-909d-a7f5a81455b5" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32150b1a-9bbe-4359-acfc-914b6964a4cc", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 19:04:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "bingId": "9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906", + "name": "Monte Rainier", + "matches": [ + { + "text": "Monte Rainier", + "offset": 29, + "length": 13, + "confidenceScore": 0.81 + } + ], + "language": "es", + "id": "Monte Rainier", + "url": "https://es.wikipedia.org/wiki/Monte_Rainier", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index 2e314d440d75..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "40df1b35e0e23c65c61cb7f625d8c956"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c01a3aaa-fd38-4f5d-a4b9-80d6097e6400', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AjuhaOFUpMxIq5Jc6pkeyDo; expires=Mon, 22-Nov-2021 00:43:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevry7EImpv8KUccjvkE-_mfjlNJ9T_tBPXC1tNw8XDXuBEBk6AZEi1SGLQZOwF1uxtIKQHkSzQpBq4OpzfMJ3SAHxIEhmTkAWHvHp6D43RDUgGNUd060LMINp4lEc5slBTjNYgr6_9-eZcv-eskYyD64-wcs3O35JPbZPpT2wGAsqQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-7719d0ea0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AiyOe4DThTFIjLyt8iUyvfQ; expires=Mon, 22-Nov-2021 00:43:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrlcnnJBar3b_sJRIPVJq8NwKAVm7P09JlGxAiMcKESfBW4JW8oNkP5r5LQUIZ58qcZ4KtMYsFShX0su4lP1BWazXz9S7Z4uLA6xiEhqkemL72aasLoDGeflVm6nFWKLsNDzdsNWVBP1gGc8GO9CoUbFdEBE8IUez3bvbbwJ_Ws6wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=acba562e-06a5-4b2d-9128-2d9c66655609&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-9588c8280300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsnpzwOI2zJAkw_FHfDRMBs; expires=Mon, 22-Nov-2021 00:43:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":26,"length":7,"confidenceScore":0.21}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":65,"length":12,"confidenceScore":0.42}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":50,"length":7,"confidenceScore":0.2}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":90,"length":12,"confidenceScore":0.36}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"2","entities":[{"bingId":"296617ab-4ddb-cc10-beba-56e0f42af76b","name":"Saturday","matches":[{"text":"Saturday","offset":25,"length":8,"confidenceScore":0.05}],"language":"en","id":"Saturday","url":"https://en.wikipedia.org/wiki/Saturday","dataSource":"Wikipedia"}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - 'cd3ff971-22db-4216-bb64-c41c88825e55', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..51c2394e754e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000373-0000000000000781-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ba7fc543-0d5a-405e-93f4-25ba767fa14f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "58c3194a-8fc8-4979-8b33-e5422d5a7062", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index 8fa26c04241f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fd9441430a75f4afcd27d4647131a0f0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f1f6b24e-6a25-4d20-84e7-ef7e65e95300', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AjfBt4EUB7xCqkSlgVt4rCw; expires=Mon, 22-Nov-2021 00:43:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrok3QRSg5mL_tbqDhLFkseeqW9or5fEeYnV-1QMjiGGMwn1J_-v1XKfFcm5nnvWdxt1snvrmiOtU3_XmBnUFC58i4WsrTtwBW9B5UBRWN8_cQC01dcP-3GKqX9lnHbd_cFnSV_RCe-iXMtP8aKyIiTrdzBBtbgjAQSHU3SBsKOJAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774ee38b0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AvYwR0j99xNHvCHWcr8_T9s; expires=Mon, 22-Nov-2021 00:43:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1ETMe0ClJLEWM_wNCJTilxVDrWBIKPHWrbYK3qHrF_hPP0K83L3My_ZjTigVQGLiyX72hklvlE_Q4Q7rwJVhQSCluyFNZBv7cPLucF_JEcPl9ZqRw13uxFvTuJ2oiQm5ArbwGtaPF5afJavFiy-_cC9vQzCRZZwhnGn7BE9AZHYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e9c10b84-3b12-44e0-9f2d-545c224217cf&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '06d88560-ec8f-4cb9-97ce-a111c0270300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ap0k0eCnuLFKimYDLLEDeH0; expires=Mon, 22-Nov-2021 00:43:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":26,"length":7,"confidenceScore":0.21}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":65,"length":12,"confidenceScore":0.42}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":50,"length":7,"confidenceScore":0.2}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":90,"length":12,"confidenceScore":0.36}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"2","entities":[{"bingId":"296617ab-4ddb-cc10-beba-56e0f42af76b","name":"Saturday","matches":[{"text":"Saturday","offset":25,"length":8,"confidenceScore":0.05}],"language":"en","id":"Saturday","url":"https://en.wikipedia.org/wiki/Saturday","dataSource":"Wikipedia"}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - '7fb5fdb4-8fe8-4c0f-b4d9-d76ae6d6695f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..91bff8fabd74 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000372-0000000000000778-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b921e5ba-65ce-4636-83e3-95877ca18e02" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33d63935-11a1-4ab1-b11e-e3bda17bc7f2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js deleted file mode 100644 index 4a0307ed6040..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'cbc1f78a-2d1d-4436-972f-0e86afa97500', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=An1oL4LS5FtFl6JaWcRkktc; expires=Mon, 22-Nov-2021 00:43:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDurVbUNdbnamUAb0dnbH8hofKms9vVBPvT90pTGqVlDFkzqsEwbLRi7J9dwBpbzglzdLqQMoKhYNiORjjJ6eL6cKMz5xNNEYLYzMcoyFkdYcAaIm2US4hZUWXJQU3S7fm3FHLQCD1HomIWo9LO83uAjv30VRda0RqD4vY8f7CPYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f2cdd60400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnYWNM-9TaxGtdgi-HHl0sM; expires=Mon, 22-Nov-2021 00:43:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLoHPx5Tz8Ppdo-QnYoyY84RfC7NeEjb7n2NQJLKVmsUrLtlSt9qHJsaNVuXFrGdAvnogVpdSi1ZiASz2qRPjaewHV__qiqOaLLvsw1PI5Lyr1zettN7wiUHNy8GqFcOAunbaHoRP5bqwkrp8RsQpPijt7mZenkodG8IzvMotJusgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4041e869-5673-41f3-8f20-291eae82caf2&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23086e0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aite_583vpZEi8Z73MNNKxQ; expires=Mon, 22-Nov-2021 00:43:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - '0c3141fb-3c17-468a-8b89-e2d49ccfdd70', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json new file mode 100644 index 000000000000..09cec77a17fb --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000376-0000000000000790-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fc18b70f-352e-4b7a-9ed4-ef2a9f178437" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "7132dd46-cec2-4816-b04b-c6938c18a532", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js deleted file mode 100644 index b70a1257a453..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a18c30f77c1c7c0ed35bbd9a51da7e8d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index 85f49275a3ce..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fad55cf856722b5497b225d29f822c2b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2e9c83a9-bdcf-4311-bfab-e3634f270801', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AmhSz1leLlJLhLLV_8gbJJ4; expires=Mon, 22-Nov-2021 00:43:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpHatJoqKvu7GFIZ_iydtVWDnOUynKScZgYbZTfXmFrCUSJQXWlu0R_O3-ggWfzQOEvdCz7uOExdhvx1L0N9Fk1S-BwImFwGll2rNNKzWxQnLlIAqfZ5slEeiOthBjf-jOJ5pFlMozBfZ7CFv-FiwXXgL2yy6vJN87qogZGbLbKMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23df6d0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ap8VM6A7eaVEnqmaOuuafaQ; expires=Mon, 22-Nov-2021 00:43:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrnv3au0-qWlzXCYHZjeL6p35u_io0cnlnPb4Vac-fqnI9Uz2bYDntl8JUmsA-_SXOyq1c7XfyHv4yEiXnyFRO9TnwOFLH1LsVXFLFtn9khJXXpWAJeIjD4UcSE9KWQBov6uo8itt3BD9j1I79So83gdzLoM7JBmhe7ahXJR4jW1kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=dc54916f-53c3-4052-adbc-11ce776aa1e6&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f96f9210c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ApC2jp6FQcdLiCUOKlgMqJU; expires=Mon, 22-Nov-2021 00:43:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .query(true) - .reply(200, {"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=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '23cb7297-5814-4da7-9907-c9d80b7b78be', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..155b1b3a36c7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000374-0000000000000784-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9d0e6bd3-7e9d-49d2-a24d-ecc0b76b757c" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ee7ec9a-4e4f-404e-8988-87e2872e3ecd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:04:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "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=named-entity-recognition" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js deleted file mode 100644 index 012da8b2927a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0503abe68a40b8eb9a93ee2d07ce5d93"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '94dbd769-7098-4264-a885-86fcdf184f00', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AmNS0-Bq7P9HgvRwMJ1ZACA; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXrr0FdlACq6EMX6RXWvxfIv9NjoUnGF1amnD-ahd8E0E6TV1G37OJ-tuiYm-er3ZNk4Re42JyXASNYFzN4l3XhWuhVwnCUkVXTXuKmJtDvhqJUI6t2pKEsI073524UN1AlbKdIZRE542HL3KtQCpLS3JXs_6BfZQOa5RNFxswqwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774ebe8b0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AusQwCHahPFJv-Qp6T05HWo; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsFn1fNsiYkc_2jMn7tQ6KcYvuoBMFdDKe2ozLmW4aWg5N8saq87Pi4zQvbMZWeizywiw6WqE4hDyHNatgpvdkDhVLRZlqWpHfpaWXy_afr8Ds_5VJiBnGiSG4GVU8C5GNd8E1lH8c_BSPnfHAKHinSuW8OF885YfSmdniZzvM-AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=381583dd-6134-43ed-916a-67d17952e89d&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29be3fe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aofbll-pRbxIiHxzCol011g; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"I work at Microsoft and my phone number is 333-333-3333","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I work at ********* and my phone number is ************","id":"0","entities":[{"text":"Microsoft","category":"Organization","offset":10,"length":9,"confidenceScore":0.94},{"text":"333-333-3333","category":"PhoneNumber","offset":43,"length":12,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - 'bb5a2978-aee9-401a-aafa-5136dfe8ded3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json new file mode 100644 index 000000000000..69ca9a65b45c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json @@ -0,0 +1,67 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026domain=PHI", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "107", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000368-0000000000000767-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "808eedbb-c437-4bb4-8dbc-df4ee5c4f148" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I work at Microsoft and my phone number is 333-333-3333", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5ef7413c-1f1e-4c5b-9d23-59af21e731d7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I work at ********* and my phone number is ************", + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 10, + "length": 9, + "confidenceScore": 0.94 + }, + { + "text": "333-333-3333", + "category": "PhoneNumber", + "offset": 43, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js deleted file mode 100644 index 341e3eaa34df..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e022d94350f7224141f9cd7cdfdf4cc3"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f186f414-2c69-4b9c-951d-162068914d01', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ArKgBWTIx2ZIhlCjFKRoFZY; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqfSeXxe6eDtvS8k9XPnJfO68yrjwmeF8M9278MmU-BzxLqPHya_qfFptD9o9xWuuXeWRaZ6wWrkS8R31znXiiqGh_xU5NnwU9i0eLseDdHU7JfoJhnJVx_PfhmdtquWNvpubnmkzaAbU0E0FOo5AQBegdj5S2G1s8d2inC-i_gwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-8200b0f70300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ak3UMmFPCm5LjaShN3cDKGc; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrW1ox8utqTRxbGl53WvHOXC08w5-jINuwu9pgNJpKnJI8limu86wjXoyDySfyFcJUV2T8NC0R692AthwLpn8XxsXDEZn7RUupxC2WVZI9y1eIDWyQuuyXsSQRn8XfjEqmBGKjBMt0g0TPOxaAMSuHnEdfHm9S-Zd_2eeip4hfpOEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=461e438b-2dcf-4098-a280-6c96b742f40e&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b4659010300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aj1tW7uGBflFkOQMdYTAhdw; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - 'd93f2caa-371f-4732-b42c-f4fac6a846c8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json new file mode 100644 index 000000000000..fd303f4aabd4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000369-0000000000000770-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0fd92c54-db40-40a2-a59a-36ae6adb41fd" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0777c2b9-3082-4115-9771-1221029b224e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index 9a06b5de0460..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c102b5dfd1ffe2c563f80ba16ae00455"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '96f27a99-1dd0-488f-9253-9af39e0df700', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ApXTi5WHrx1HoapJ79XPrio; expires=Mon, 22-Nov-2021 00:43:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4y-JI0A1kCCwIoYfIBcK5mi4kBCtd8KT45Wb5Q7o0TMFPV2zmAWakrvcheExGP1leO67dHSOa7GIa76NL932kYRzkdD8JnVHhlqtXjb8PwUGnfPDUEn7FQLmTKjfKZTEPOvFa6QHvzK_ZkYIbz8xkhg_F-R4vkeLlm2Z8lyHp2ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bd3fe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AkfiBNRCWhZMhPxbBqvWE1Y; expires=Mon, 22-Nov-2021 00:43:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpP6wpqgwBo-h7_TUjTJR8yNv_xSRT_xIovLFbK7NVM66AjmwIRYd5Yr_5GmJ035O287mGOT8fskpmpBu1iUZ1snzN1I9uLViRtL6t_qVbqjNCi2jkHJK2c4JvPesB5eE_ZEJUL6VhI1troXaS7RHybmp7FubT0CuxuPSPw7BY8kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=fdb0a563-cd27-42e3-9837-f797724dbe4d&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f261d60400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AjOzET7S1_VEpmP_c9IrEPE; expires=Mon, 22-Nov-2021 00:43:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"1","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","id":"2","entities":[],"warnings":[]},{"redactedText":"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.","id":"3","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","id":"4","entities":[],"warnings":[]},{"redactedText":"La carretera estaba atascada. Había mucho tráfico el día de ****.","id":"5","entities":[{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - 'c14db08a-8e23-4106-af2a-d04c4199d4d3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..145d4d630b72 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,123 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000367-0000000000000764-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b8705f3a-03c6-4b2a-a9c4-d9b71ccfdddc" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b6a3304-2846-45e7-a828-126ad4f58040", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 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": "46" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "1", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ****.", + "id": "5", + "entities": [ + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index d4f8b90bf492..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "4e3cd609c00a705d03d31f2bf28dfaa2"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd59583e7-f072-488e-9e58-1e2411a85c00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=ApPJ95Y3hFlAikstvLdsUQ0; expires=Mon, 22-Nov-2021 00:43:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrstLU1hML7B4emGBu7C4eauUZsMKFUJ7CdjsFV_AKBYadRmJtQXqgluXIylBrvvb2UL7ynBZxgiU4eK2Lufby-Dn0x3AuA1gsfbJi2WP8y2Vk9ToIXvVlMC-9IVRpRvLnZIMfc-xf-02oa0T4bIsiU4kUaltfKQ3KLLAp-Rqqi58gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:35 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-4069c8c70500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Aoxkm3ALJetNoWlJVSdiqQE; expires=Mon, 22-Nov-2021 00:43:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKRFbZoqRqQEZkIH6l2C-QJuKVQlxmKHNC2WCi4zjGhzyop27K6XPV7bFdguu7yxlBytgNr_zkDBjS36Wtw_kC0AzfKfGQPSTxGqIIS0pfAotiN46DWA7H7mEZr8Ps_CNgl5uWo5UXo8US6hL9DF0drT3YMcA5DtC5SG1A-xpVjcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d4fad154-e8e8-4b12-bffb-7507a1e20daf&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '06d88560-ec8f-4cb9-97ce-a1114d270300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ak4QcM4Mep1NkIvW775MpoE; expires=Mon, 22-Nov-2021 00:43:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","id":"1","entities":[],"warnings":[]},{"redactedText":"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.","id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"I didn't like the last book I read at all.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '38', - 'apim-request-id', - 'd74b4a9f-ab87-4a13-9ad6-47a767b2f547', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..b690365b3c11 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,103 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000364-0000000000000755-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "20d822a3-7229-416e-b268-61fe5946e092" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "323a4567-fe0f-4a99-9760-9a7103c409cd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index edbf19b70123..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fcd73fcb0c4205d92a523635756d6383"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '552932b2-2354-4711-9c43-e8b15d88bf00', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AjWurYp_zUtOtbLB5DU5CDA; expires=Mon, 22-Nov-2021 00:43:30 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFEFyqpHlPW1_8jSTG-qy1s4ZqrCnSY4LRLR_grFX9cg3tnrN5LYibvNIYYvXZFXkYM8Gom4-ZYsDvH6BU5E6onaAy3XRF1tBUPjH75mBll5F7fDFt16kDDP9WaZxWFin9Y6NMWyBmV2a0Z7sJ-xLduL54AlFu-kpH8JURoCNAZkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443f77c0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Arks4YH_k25CndOGaZCj4-Q; expires=Mon, 22-Nov-2021 00:43:30 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGFU5sJy4OyJYOojn81eSAqbQxR6ISpDgQxh8oWy41DRLsjviiSIT-OFPyM20IPARjLaKs43CnIfmjXuTH2Xp6h5dkjtSyiO_icqSZhgMLOrORBlhDaUm8FgYpWlFwyn8taJ_rCR9zX3VT8aQeCxcFPHQq0Mvt5cKw1zcaZUxNKYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=477722be-d670-4fda-8cd4-18f59b6cc3f6&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23826c0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Av-E4JRO8iRPt9cq2-lEsV1z_bg1AQAAALJRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","id":"1","entities":[],"warnings":[]},{"redactedText":"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.","id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"I didn't like the last book I read at all.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '5028', - 'apim-request-id', - '7243fd6d-0d9f-475f-a7b3-b3410de87f5c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..e87b9d331896 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,103 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000363-0000000000000752-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9f96841d-6399-47f9-a430-d63d9acc9f57" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79af4ef1-3a7f-4cf1-8f54-c6e560745bf6", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 19:04:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js deleted file mode 100644 index f7e362b76a0a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "630be62a5cda2962b4bbaad3db24f9e1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e28921be-ef14-45f9-8d54-71e8850cec00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AhLT_VTgsQFCvXGe_4OwrxM; expires=Mon, 22-Nov-2021 00:43:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8DVtpjSaXiQswWt0tcdq5QNoXQ_nZGG57z3QUDUL2PANt_vL2vuieLLYF5-hCLpEMOxFV94YJg_jPa0q6XzbAjU8-pn9PqypFy5MPtjtbUjas4qmoF2ObhdoLesTmyMb69PEMy7c7z-f5WE9nZaabxB_MsqVRgId7BoEu_O51-4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553a80ec0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnqAcCM0oOVKj5veVM_cVYE; expires=Mon, 22-Nov-2021 00:43:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3wEgpUdJG8GHRgwh5WbOL1xAnVcAoT-oLYdxM20LXmwt1SuKr5MFPZ27fbMM6rYYg4TV8mP6HAEYDhr6kDsKjwmNEb9brW8NjEPzKMv0qM_Pa7gdgTFwOhRPZi6xJIgY78_BfBXFmNqED2A9gAHDz0ju9FXrTARRiIDx39c0TDEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=91e78510-8c34-49d1-80de-12f73929bb86&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f0336ab0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AmDQaYsuaoxFsmeeqWlOWb4; expires=Mon, 22-Nov-2021 00:43:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Your Social Security Number is 859-98-0987.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Your Social Security Number is ***********.","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '31', - 'apim-request-id', - '47205ebf-f86e-4c12-ac69-4888df26af1b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json new file mode 100644 index 000000000000..3afe3022f29c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "95", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000365-0000000000000758-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8a5733ef-d0d7-46c5-88d8-b67cf95830f8" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Your Social Security Number is 859-98-0987.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27bc8038-5906-4a0d-b2b4-113f42dbbb28", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Your Social Security Number is ***********.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js deleted file mode 100644 index 5ab4e95f7139..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ab91690f5ef35c8898e38f3c835cbc21"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '96927158-6a05-4981-a54f-b5614e134e00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=ArcuE9eApN1Gimebwh1mLZI; expires=Mon, 22-Nov-2021 00:43:30 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEMLjBn3uS03psPGs89uObE69BRL11SW54O_ccNLiyexlfZsG-rZe1iZTbUrL1hEoVUwD8WHUWwjdKkYC1kuCt-SM6SyUlVbcwNVKwE_yDlRfEQ9N4trpR7qez9i-fxyHqbogdGPl4-PNpyhKBm6jCsXE8CeHdr0aTtISVy0neBEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406910c70500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ai31wP9ECYZFg45PjrhnGGc; expires=Mon, 22-Nov-2021 00:43:30 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5AhRb4aP9Ap7umfge3FzVeP2V9aUlp1B6OykCCAFGMyFbJTMWHJNkbiWRng2mJykJKjJjfpbHJ454U-3e_Mez0lfwD_NoousGEMbFyhM6PIjUSKgiaY8KCvsRb4SL2gytL2acCGwfmani2XYosY3KSUwUCHSAggwWKPi9sEuHPAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e507c510-d571-4ddd-a026-748fe06ffdda&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '956061d5-661c-4b1c-b3b2-6a470d060e00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ajl2VPUIxvxFqc7HVJ7Hdko; expires=Mon, 22-Nov-2021 00:43:30 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid Request.","innererror":{"code":"MissingInputRecords","message":"Missing input records."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - 'c62129cd-842c-4cbf-b219-0e71052ac07c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:30 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..5a93a8cc6150 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json @@ -0,0 +1,43 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000362-0000000000000749-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8a6ec44a-07a4-4df2-a9c6-326d0be1f7b5" + }, + "RequestBody": { + "documents": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "80191a24-cb06-4475-9afc-97b2097706d4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "MissingInputRecords", + "message": "Missing input records." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js deleted file mode 100644 index 0dfdae22ac40..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js +++ /dev/null @@ -1,155 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ccbce5fd6d6bbc1f2ea2f7507f99ae07"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '21b5a316-ad58-43c8-91d8-3f88d79ea900', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Aqh5vx3iVpdLuy2vtfw4FCw; expires=Mon, 22-Nov-2021 00:43:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPUWWXf7rSIflL9bYd158QgiBT6xH4DUxrYnLnCriYOdlPDgxF5pQu1RLUUIrjQ6WZ3krnen87wOrc-13vY-c5PlkLhAbua9YzKAuUaTh4Am6_loSBwHBFBBIqkZQe1OSYN_QkXs4D-64LMCcr4RCDl3Fo-l_9RAK8YJTO8hUvT8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bf1fe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AniGJ8PB5u1NoZsJ_eKr6lU; expires=Mon, 22-Nov-2021 00:43:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqgiBDyIZx802fOuDy2d6wVXceBi39pnTAgl7sy8Or8XpUo1lAfINpJHwFd9hKtM-zKgP0zFkCr6im4StBtm3bRdoW9k0bf5jQsh04KF02A05k5y1V3gqrMUJL8aaptriqSPD9RUCoTPQ7n388I3k18AlpS_glaOEJe87dB8yYeogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:38 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e53e9e39-45f9-41a8-93dc-68f3e72f9681&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bf3fe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ApQa_2IAdsRMjxO9ycHiW7c; expires=Mon, 22-Nov-2021 00:43:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Patient name is *** and SSN is ***********","id":"0","entities":[{"text":"Joe","category":"Person","offset":16,"length":3,"confidenceScore":0.78},{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '97412498-ea71-40a9-a058-703e4388cfd5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '32', - 'apim-request-id', - '577ce8a8-b103-4451-ab08-3879cec72043', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:39 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json new file mode 100644 index 000000000000..ee558e439706 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json @@ -0,0 +1,122 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000370-0000000000000773-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b58eebe6-aea9-4d45-9e2c-4f051d8c3e02" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3a8a9df-c0f6-4c97-adbf-47f059c7ec8d", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is *** and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "Joe", + "category": "Person", + "offset": 16, + "length": 3, + "confidenceScore": 0.78 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000371-0000000000000775-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "eee70adf-59b1-4df9-9912-967b518c9688" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f5fde8a6-a6ee-49ee-8ad0-c5140cd6736e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index 77e77c4cba78..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7a84168b9a25f213e63eae0d9e947364"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f033dab0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Aqth0x9UGWFMiUrTZk-8mi4; expires=Mon, 22-Nov-2021 00:43:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAmO_LsDskW8Q14d1idgZ2l3ddKB2InuZmhAj478cWQle5UmzJ7N_GfeKqy-RD_c6Ri21Ad-588u-DjAWCNAQzM7RrfagL3mHDkwprd4MomwpfS9TxYx2TBokczbJm7uNS3FZiPcJolLPRVO5JqJuI_-GhScCGe8jXuNnZj-gFhogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:36 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bcafe0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AkWfelr_YkROv-8QmRf7h90; expires=Mon, 22-Nov-2021 00:43:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrC3fg3CqPJupvrx8GZkyNaOfZLzSR5Y6Ab-yCdhhNCnH2aiCb0do5ZXXIDZ7lcTCjwCPqcuT1PHDhxl4JuPbLacetAttyiXjUy77wtll3DIiEZrAUPXYa3nHqTeR-FfmDbEWraPkZXYx7xOBazDbgxZ17kLWHrSoHFStzgMEjU2EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4905b29c-7444-42e7-8067-d32385bf7817&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b4638010300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Av065jM4pjtMqe1fYyMVO9k; expires=Mon, 22-Nov-2021 00:43:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '936ce6ae-c312-4a1f-9868-9dc2c8af75b4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..a1db55327574 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000366-0000000000000761-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "10f0dc56-eee4-44ed-a2fa-fb3de5c67baf" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13eb981a-ef4b-4cbb-b10c-cc3d7a84510e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:04:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js deleted file mode 100644 index 2ebc767138a5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "5bf2e604e0628fd3b31f70ada6ce84f6"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'bb15853b-9613-4ca6-a241-74b4f983ff00', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=At-1K7Sw4NpOhEVQ_yWpbd0; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXkIj9OUgBmu0PqF9d9Vz-piKhuqkgAQZd_QO-8qOneSvdaupuzxPwWyjITYZUF6us64R55tw0xEl9HHFBTKmR9jKq2PT-4xl9Dnb1jwflHl4zts3uv5cYAPQQi_lspYKlnNWPhtI8bvc3x_tS_WabQcDxtLCsRNY2hYbzpZ72bQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e5b8c0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=An6DcObk3S1NqxlYi1wZmNs; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr91iuujORKPMd6nRvDaXhKU8sBeQXwm1sKLBVZCiaT82gw6yaEr_ZI9EJtT9RWw0v_G8H17i9QoESSAnsQmGeBOFXMMnfUfUCcXwXA29ndYktdfbpGEYXm8L_zSvEsk-EjWJUmPd7SGYRjWqW9sF0TAc42kAAzKNvga5UvqmO4JEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=c41ef254-d6ca-49bc-aa59-70d4978856dc&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15be38c0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AtHucuQ1py9GqXWEyYqXQvg; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - '1b320a69-1d7f-4464-9c68-2333ec691e8f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json new file mode 100644 index 000000000000..913ad6847938 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000381-0000000000000805-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "19a63be3-553e-40ac-9514-6ba50c76c436" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84948e30-61a5-42c6-9179-b9e16ebd7fa3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js deleted file mode 100644 index bbc9ece4cf2d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0f494b4e64cd921825d9a4e50c6dbda1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8d243aaf-fff5-447e-ae9b-e9b0455d6800', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkxVp31yEnBNpBfrDgdrQvY; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTxP1lEG5RL3loA2sEGyDjl4tnL1Qklpxk86WgsGiZGm77LpJt76WGK4vhXWFfaIGlaM3E2GyEEtk3YrmpE9yOBM6LnIVizlVPQmXJP-X1XTOybOd5A2D9uk5apURaxcAUXgMvFasruu2f5u7zpinSayc0Lwc2MkLS7z2-0Qye1UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820024f80300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AtE1HWizaaRHruhfkoofDEU; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEHPZINXeyAoO2yU9PPuuvhuWNM5piZdwBJaj_yo4A1qgV581FeKZnXfGSH1chkSEUyJJkh7NIZdLQLdUP5Zcs9v9JRVBRm_WF5RCbVS067VKE_uZfhWx0MXP1I5m94WJpzCCQfy7Rr_X348yoF0W02YYqIjCihLGOYJ2ykZEMTIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1deb3df6-ca15-4e92-8726-4b08d2d0a132&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15beb8c0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=At029r-26JJNlDrfp5mOK34; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '20', - 'apim-request-id', - '072ebdf0-f8e0-43e7-8edf-47941ce3feab', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json new file mode 100644 index 000000000000..c3a639136472 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000382-0000000000000808-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "06e5895f-4c21-4d17-b132-71a701d1f957" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ea4e854-f081-4ef1-a636-6e3118b8f330", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js deleted file mode 100644 index 6f3db45fe17d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "8bfa650b81f420a536e37e515893d93e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '21be695c-e1fd-486b-b737-3fa10b16d000', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AsB_9uL7ckJHsCxihxdLK64; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPTKgPxz-iDFIlgGLwCLR89aJ_xDXeniuwRVlSInm9XpKdeJLbHDnTCTyiGMgYzPj9HT1BkqhUnwNZRMDKQEtbZZm95Yy3YDMXNUQ0ZduzQgfYEzhmoTxhSUQa1T09LYZVBTG8dqv4PSwjNt2V6otSeFSWTmuBvNWsMqw0Z6g4ZsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c64caa61-3fcc-4dcd-8dea-7ea1b94c0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ahm2qM_c669Ggb4l-ACQzBw; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrklvcdwfXvUQUHuqpohSEotGoui3lTf2qb2PWKcjEQ4ZhDlLDnB_eLGNTksLC13n23WzrnDTn2MpqMec0hwF5Wi_0xboiGExAp-_rpx0Ygc5SXYP1u6Itu368I2zGze4vMHqY2kn59geBZT_MLU1N7XYQIg25jW-tsntRgyFO8gggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ddc6c6d8-8cbd-4c07-b944-9dcab467708e&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23246e0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ag7__X1nQWBIpeO0U6Ajh8k; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:41 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '40', - 'apim-request-id', - '7082c812-9868-4d3b-b4bc-6212cc14af35', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json new file mode 100644 index 000000000000..f03f3cfdf1e8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000377-0000000000000793-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7504dace-dcd1-4c29-bf51-db8da08b76c2" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b14dbdc8-6585-4dd8-9c4d-e65810c2c03e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 7ffe2e3f857e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "8ae61a024f008f240e95480d720e5a8f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7139092b-cc0d-432c-bdd0-73dbf93fe700', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Au-5iRoV8T9PvUcIZP8U2Ek; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraIiWEgIvPpmecyg4BFQuhTNUGOxlqzUSTOV_MTcz6M6FwmeXOE0ly6yd3j69cTmVgpa8Tg7avfMiuLn8cLgx02Mw4WNZhxc0VJTKe6MLwH5y9TQp03Hqz4D3xHxepozDwfjmO5sSOEzgRyyucmQjPPvrbvZVJVnoxHLZ5yB8sMcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b46c7010300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Aoah0uVpQU9Mq_QQ8SBTtl0; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrayRKYYKdB_TI_CtOqWCJdz1tCvLlQzWwedlUO7WBdXTFGOExYYGn2sDaH782nMUfSN1xRyQydPuZBSEEOjzR_niuK1fClUyJkWyocTewe8WAF6JmkVihL_xpmdeR8LatvmASYUeAFZ2nakm_GNcZ2svWhQcWUe3hvE9ztp0SpOogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=657c54f6-5ebe-4af4-9e09-b106275e5a71&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f03c3ab0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AtChqcCHYltFqhfYLnyHt7o; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '26', - 'apim-request-id', - 'd7bfc7de-567c-4248-a844-08f5b8873d72', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..b1a9e4dcd77b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000378-0000000000000796-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2df0477b-d91b-4137-b3d1-255961558285" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b5f1c0c-29c4-4c93-97d4-26db3117fd3e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js deleted file mode 100644 index 5f45063b8bf8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3c85f6e020029eb63af79a1fb11eb3b9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '704bc47c-4963-4fc5-b3a6-bcd939a20f01', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=All4jHNDIK9GumZSCmSnu94; expires=Mon, 22-Nov-2021 00:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_vo3iLE8jmVQkk2NF3oEHiYWWvUPD1PTPCpD1-sCgQnaTn1Ay56-j2wDJmlcPgUn79iNL_M5XBUy_sIQ8J_Bc_A4wtJC8cuzqCMDnlkT95zUVeVgCJ5Pl-9He_147U50vtLpVfX-Bx4lJ8QlV13r9KbvjsuRc35BXMoWckQpoQQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9418a971-639d-4ab7-bc0b-6fb4af1a0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkBzcMy_wR1PvdkNH0E2gR0; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSrVwbBgKKCdldKHEK5WT28by3Rn7UlhIBjA-AzvaVy3rONJP7LeJyoMUd1cEOlH_zb6AuhHLjhAGrfVbxGrl3a86sAb5L8oHA0t0mJczXuuFiMpRPsV6mXAB4Qb5xE80sRDOHuFO-L-sa_XnRp_OlHsejdh5uTz5eHTXeXWkYlogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=119bdffb-76a7-442e-aa6d-fdc22ad7cad9&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23436e0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Av5xrzMTHl1HgDeGGDoE1Fg; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:42 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '35', - 'apim-request-id', - '3c3af9b4-3db2-43f8-9fe7-fc945a7ad33b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json new file mode 100644 index 000000000000..0eb7fce7b13a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000379-0000000000000799-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "808dac21-35aa-4ecd-9c70-4da965593fae" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f5f4a2b8-5071-409a-85dd-67b45d2731e7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 0289c4457167..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d608400bb61b4dcbcb0e6a1c9134135f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '79598f0a-2de6-4091-8cab-1a7a35fffd00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AgJ7S9A4WlNJq1Ww91l-VEU; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7kqOSnRw3P4-ZyYBpB6VezOuiyuIyyna3mW0sm2gJj6pQs9V-Gc3vxztsLArGTfrPripAfhVTx2KoAHRrdUMJi4-Rn6Fk2YEJO1EJfXKFWEe_R0j-YrCTStYF-9HiyBqajTADRuJdAgvUnThrcVxgxvC5L6tovi-yZBrnyeBkVYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-958802290300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ahdg58RmmMNDqYydhTs5FA4; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZaNHXVImpv8VQBVsqbXK38ix6xvrn0l-ZOO_5hiB1NU474c_NKmscU1YGp0n8umt6hND-vz3UHLNWnXOQowfQpgz2VbcIsQAjiwVDr8trW3DL3yiyzWikdO_fe41JKTWdFrDBcmXE9-b3GIebXcKp1Wcms-WOiNX368Hg_mptCwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ec93cbc5-ffcc-4a0a-8250-fead26ded94b&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15bd38c0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AkCuxYa7E1NLv5a6-cVByVY; expires=Mon, 22-Nov-2021 00:43:43 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":25,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '32', - 'apim-request-id', - '6fbb0953-0ac0-48ad-bf41-c50d5af7230b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..c0cf6c4753a9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000380-0000000000000802-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1c521cd1-b7aa-475d-bab7-30bc0f571dc5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "965047cb-9701-43b4-bb10-b78c0ce19b8c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 25, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js deleted file mode 100644 index f6b0bd03906d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '172cb6b2-fb99-4c20-a2ab-9cd961539d00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AqVlSJFag1xJsN1tqQrmw-w; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmvOSwtDheYlRDxoP2NukUVpwaeGrynT3Ltp0luz6Z34pQ_V7pDXQyzSMqYiuuEbffcBTKcQY09DmaiAFIYyn9D4YyNwAr9voXZYpu11fUr9HK708_j4InsKrxak_a0I8-dJnHF-LMKHt7NSttXSC8PGa6orGCXM0I78-_k7nrGwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-95881a290300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AvYtVOvTD65MqO2_PjKvYf4; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6kAC2jbGliQ7qBsWW4Uy9WuogoSna7gxBsub_v6j46wKfCz8txDj73H18oOHZYmjiRQHdqjV7C5bYbBIh3S-oEyM2Hc-X0f4KuGDSXUtV-P-YAj3lc960dkvCNreBZW3v0CxangceXpI5OLZDWjKCsE84dFKEFsa3muNhoxQgzkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0ebeb80d-ae30-45bb-bd88-1a1e452dc4f2&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15bf58c0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqxXxz6NtEhPs0mx0e2y7e0; expires=Mon, 22-Nov-2021 00:43:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - 'bcbc91e9-313e-47f7-93a5-99ad5b3d2e80', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json new file mode 100644 index 000000000000..7dae0c59850a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000383-0000000000000811-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b9ec292d-c2ec-4989-9efd-4c9c1e022f7f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79f2285f-497b-4445-93e5-a5fcb36d9c3a", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js deleted file mode 100644 index 649f902ab625..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7a4d4c4e-0b6f-4e55-9bd7-eb960a770600', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AjOLiBeMSXdFqrGOjsdf5E0; expires=Mon, 22-Nov-2021 00:43:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2GyDZDyb4rYcGQj0DgBj_59x6ct8qJXIMSVOwHWiPar_NiTtkCAI2P8jTDkh-JOPgjnsk5xHeiqph2IzJsCt6m3iEddqWWErRwR4Z1Zf7Ifo9y7NeI9hU7GkMQJJd4-oCDmHVd2PoQ8U2c4Q7CJrhWm0ePn3CM_kUNe29Rw42ykgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:44 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-4069e8c80500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AmU-52M_C8VFsgHm3DTM_cw; expires=Mon, 22-Nov-2021 00:43:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZHhdFCAClvMXopFwf8EnigGcKEFK5kcjUyDeUVnUL1UZMeK-o8aFWLI3lZ5SjVqaXFD9APEZJfm4t6LyfpTpbPmtx99G1eEEDloT_2GBwIJYPb9Un1eUFPsKqpJd8R9yriYK1FXv2P-6-crWEo5MQUhlxw2d6pnbT49JI486I9EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0495b55e-c393-4d83-9c89-19fcee995e86&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-771945eb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AkcfefkHjEBKjB_H3K11Wgs; expires=Mon, 22-Nov-2021 00:43:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '380e133d-02d5-4a13-9f12-d6439f710d51', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json new file mode 100644 index 000000000000..54a1f7555e6b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000384-0000000000000814-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d07d8803-f455-43b4-9b48-bd7c9b57fbbe" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e170abad-a28e-4ca3-9e64-e338795d7284", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js deleted file mode 100644 index 1a66f7aacd5f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "54fd02130ea13f400927c60587190bde"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f1779f37-cb35-4421-b080-cfcc2c006901', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AlXEjh5RaBxJmlQz2GFvrOQ; expires=Mon, 22-Nov-2021 00:43:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsfAsMkLycNZI5Hcg32Addc9p-0uS_Km3-2IHxbLgwBYxcCAIGiQ8dJhJkwLljsxkLqYhYHxcBawRN0pBSPV5ZwFv072PW3QCsYfYUJ_wx0sq8ciKvn_QYCbqO0AZICMUH51kEzD-CkjzVgrS_DAWZ_rZ9Wps3k4H_HASaciKwDMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-77194eeb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AiJ71fnzbjZIl8fbPs1AE7Y; expires=Mon, 22-Nov-2021 00:43:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryYhBkPN48EcePferR7vd5PWkePLhpULCDKvMvsEUecjhKEMTMcNBI9orMzM2FPUBnU1cau_MgoMeZSdtnlV488Kty_yaUffNon8uuOXvWGpl6w8Dcty4FaZmMv4T0xombAtDk0JySXM1NrSMWBmbKFHmTBglNc0JbUvQ4XjZBZQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=b91bb4d3-a782-45e9-9e61-b87bbbd53fec&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553a72ed0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AmBYqtEiD9BLueKl3PJOS4pz_bg1AQAAAMJRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:45 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - '52bdf2e8-ee95-4cea-a7d4-4b268b95ac8c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json new file mode 100644 index 000000000000..f491fba2ef05 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000385-0000000000000817-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "28dc5087-ef7a-446e-a96a-c310bf860a80" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3881ef67-0a5b-42ec-9d66-16738272add2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js deleted file mode 100644 index a539b77dd403..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "89a51aa4719dd90f068e5b56f6377757"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c01fb727-ce51-4c76-ab17-4e43bb91ef00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ar08-v3n1edEsuQ3ch3JbHc; expires=Mon, 22-Nov-2021 00:43:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZygFOZs16VAAgRz_c8-35jjjG9boJQqIDdMpVe9X6req2hd3AQI2NNBv8eZc5zgNxh7sQMiU4lXCYczx1VCW56dUFmwhbDHjgV4flIDIsuEZCaKH1aX2DIk3stBt0NCN5BTiRfSuF0yzkARKUa4TxztB5_P-XiQP1gyom-jeZS8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:52 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '956061d5-661c-4b1c-b3b2-6a4742080e00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ar4zITfmh_xHsckT87jdIb0; expires=Mon, 22-Nov-2021 00:43:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-9xjxmLDg3jmWajLDnY8YKVA7tId-GncAoW35bu200YHgVo_XlbKbLO9PyjyRv9EdAaoYUYkwo0AlnFfXzd5iaLywypve_sVhFE7boC0_SjEeITj5pmx7vE_z02DZEiSWYP3rHYSG8xxfdgsevTgTaxQEiH-BqWr4i3AmQe2P2ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:52 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=199fc9c8-4ccc-4ebf-98ab-1f0ea479096f&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993e39ff0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ahd1zeNJtChGs3PhxIwi10Vz_bg1AQAAAMhRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:52 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '8bce029b-688e-4629-8fb4-5f3e81e7de71', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:52 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json new file mode 100644 index 000000000000..c024dc3f0d54 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000399-0000000000000859-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "645ed4a8-734d-4cad-82ac-0a17625b9917" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8fc040c-a830-4380-9295-e327ebbafcaf", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js deleted file mode 100644 index 55d9037f29dd..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1d119e0985c97360d15d4d8824690d99"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '42b7e45e-695f-4d20-81b8-5d4c27951101', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Agr7I-05GI9LkGYKikYtE9E; expires=Mon, 22-Nov-2021 00:43:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdZtKHzZGaKMx-k43sS6A0ddj2pCn8NwZhryedvuC3BrCXwc0G6Zi0StGHZbqnzOXwGdl6StjmITZNRUQMQQHj4Sb88GkKfzgaWyDmAOOZxjKv7NeJXZ-A_4C6wax-Pr6kOjTC-cJghEu1z1DZbW5z2TYAGDuzAl3w_mTkNqD_UkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '06d88560-ec8f-4cb9-97ce-a111a0290300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Aqvs_U6U_pREofl2AGLsi7E; expires=Mon, 22-Nov-2021 00:43:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8NG1z3qQW7EksewoVqvbkiYEdP4UtNNjbdSN7qQC2b9--5T5EWLA2DLXsrg5sdLVw6DDp8iXfi1Oq_h6xTlA6kllefrafcOvVyseotNx3Qrx-en7XOpfbsbqO7zffXlLavSxcOP7FuNhNdXZrgNIRw1dyrCrQSG8rOLeJpuvjfUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=c39238a7-601f-4809-82b4-fb863e520e49&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23a76f0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aj4mm9FcqFNIkNV8tzMiYXI; expires=Mon, 22-Nov-2021 00:43:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '5f080c01-cc81-4b73-a9ca-38e64813ad8c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:52 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json new file mode 100644 index 000000000000..e2f6f9e16c45 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000400-0000000000000862-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c9ced776-9296-4a33-93aa-288a3ac8fa10" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2f734b5-bc7a-49d5-87fb-f7c9d3c74001", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js deleted file mode 100644 index 57c16f5fe92c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "83521e8e248437ee2888e1997b206de7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '518f0067-02e0-49bd-8896-ec445eaf8e00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnM8oxhL439HlQi_qbaFKhA; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrc9rLOIxh-DhhI-TSlNwL8WIbRZvETDYGDMAw70uZ2L_KeNzf6_zQHgce_59SOxEawuCMjFzDHRbCYdV6sb-HVMhWRVUrlDdTqGb85xE-3IPzcUlkwWZDNDGZa-AYWtO2P51lZD5DoKcalZzfbAyDOEL4pQtUE8pJ6XXTgSUmIk0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553ad5ed0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AlaD7s0Ybe1ClV7BcEf6Qog; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmSadn0aZ_w0nu09ocbATVpzoyaiNcqK8C_9yCuQTYQwNiRB3WU95q4JBJ1mEueGwBQSb1p2lMirUjm3k2dKF2HCSCTMsrrg7PhJYTxV1Wb5K--RGV-YKTbivdAHkAFX4GPs-2s0YFAEit0KwHgfp0kLJ7IEK9aKRhZMHrxD4S7UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=314eb78d-7e4a-4ef4-8c21-79bb32398fee&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b15000d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aq_-T2ecv8lNvqOy3vBURaE; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '197257a5-f370-45b2-a688-1f00fa1b5fe7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json new file mode 100644 index 000000000000..4ac0f4d212f9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000395-0000000000000847-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b2967f10-55c6-40b2-b584-133f46b8c8cc" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "043cd835-7701-42e8-a7ad-3fdc955914a2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 8a9ea03299df..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "38e0c461acfe3ddca957670d86bdac0d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '42b7e45e-695f-4d20-81b8-5d4cb7941101', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=ArSUkfK1NjNPgBZwNnvFF-4; expires=Mon, 22-Nov-2021 00:43:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevra6LH6n4K62fMf_-wtTetHWkMg-dYZQYcsv5XxIqQV2Q8HK-G-UWlmfe_NX0wLWoPpj5y7JCR7msxbCgwzwUYaxFxDFXC1VmSBqRTm-P3pedx3WQfOweYpf0pUxR-JTFtbEfPV-QDySC2bAEmiboqODlSpuJauHFkjyOEbWbgJjYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f0377ac0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AqUPdSjLeJdLqGyRgt4phks; expires=Mon, 22-Nov-2021 00:43:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUectCjC0Zcm1sKEPmGIcZ_LribMK5cQ2rDwlAzrvY9A5nd9aUvMPFuf_f-afzuNOkfLU_SSJSC7DvPgrUSV3n7DcaOtRKxg3CaIDHdhumurYVz7wjb8HQfFxvjh89TlvaLqOLSKyLUZWRSS_NX8vzHJAlPd_nG-1Dqy_sPY6tKAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=916b8ae5-c767-4d70-b01b-cfd419004f6b&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-7719baeb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Au87mam_ncNMr7obE4cyvtY; expires=Mon, 22-Nov-2021 00:43:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - '742af070-9ef8-40d3-86ea-ddb76b31d6e4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..511bbb08a3f1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000396-0000000000000850-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dc68c8f9-d465-4e7b-8ba9-360492b39fe5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ed08f6fb-3408-4301-b1ed-ea102ebf557b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js deleted file mode 100644 index 3c062021323e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f9f7157c7614ec76faec095e88df709e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '172cb6b2-fb99-4c20-a2ab-9cd968549d00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ApCJqRKihuFHk88t5K9gm1w; expires=Mon, 22-Nov-2021 00:43:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrq2ZKFm1zeLD53VHDgg7QEmCcVAYAJ_Z7hXlBWO35S-GeOlG0NqWCKE7UZKd2FfVInbXOsM4-p6-F3mG_3SEUHhzyWU4X-B7LxqmxTWLIJU3IwMs_nFlhd8uOVNjhGE1DvFtrOeCFvpQPEOxiBRoSelgwPzlxAqqJujXrKxNAD9sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-7719c4eb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AoXz4yMy-rtGtxO-D3KLWFU; expires=Mon, 22-Nov-2021 00:43:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7AcFNOD-OOhZ7lOHhPFpYrubWUe72ofF0r8LWbMbXdyT-kX96HFKKVWXxIsx1UNFrHKpEA2Fap2bj7S7_qXiNYB5ARRLDYWtLOXAvZ7iUW01XYTIs9A13Sawg-4Hn-HdV1wlFxGyebiI_BpdWhPjuzXvcMipxvj5TIzlmb86fEkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ffec5bc4-7ae2-420c-8450-7f7be715f720&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f9674220c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AlK22J2204pKg8diqHi2zuY; expires=Mon, 22-Nov-2021 00:43:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '20', - 'apim-request-id', - 'c8afd903-b32d-47fe-ada7-dbff2343cbab', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json new file mode 100644 index 000000000000..b2df954daf84 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000397-0000000000000853-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "857ccc99-5233-4178-9d7c-aff10bec5615" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae10f364-d9c2-444b-8996-7bfc7ef48627", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.js deleted file mode 100644 index e9edd4e95ed9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "83e235083503e938867e37c3a69e1f27"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8650917c-82cc-47a1-bbfb-30300c1f5c00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=ArDh8PkxcdRFmGRs-CBODcU; expires=Mon, 22-Nov-2021 00:43:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrILuyAi4dw2CtR0CelOseh55uAIivMmQZU1xMFykiX0Ia7LAnnIkGcHiRxPaZvzZ3HsVpReamL3R7PrUbC7CODueKKtXTnKEDOz4snkiAk5wcOxdqpAPrMk3ZlWYWiQyFooPVriXKLu5aZQ6VB2mwB_j-KXYCCwyrvdoRMWn1oZYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-7719ceeb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ag7uUzZmK_ZKntaLq22JZgI; expires=Mon, 22-Nov-2021 00:43:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevruE3UYaIUGL45MPXH28qz7ZJMYBeNE7q60bwWie_vOxyJKiJa4wzQewSMtfC6d92aMGwYjkTryoJgY9dzo2CyfS8knCkytSsohlIGUyEjcxjse06ASoLVdmBHz6zcFkPI33lCl08Cwikq3kf8ngdV7eOU1IYmP_MYKlABhvuxq6AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=2c395a12-2073-466c-8dd9-d462cbd87480&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553a03ee0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AlT2m86BzvVGknNUJpnQwDw; expires=Mon, 22-Nov-2021 00:43:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:52 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - '2aac0f5f-9e4c-4f43-889d-bcbabeea41f2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:51 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..f3eb303df29f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000398-0000000000000856-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9acb2e1a-f3c7-4c06-ae4e-6f0e6e394e5f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af1a89c4-e039-4df2-86be-d358ad101b6f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js deleted file mode 100644 index 59d76be385ce..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c391d82f-7eb2-425e-bcc3-4df30ceead00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AtnjxzAa3AFPksAFESC6Vmc; expires=Mon, 22-Nov-2021 00:43:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrP6bRZl4UCLwc0nFqT5S2FkEdIKJEf9lEtHtmvZ7dDud6q5VhF7s03JIqDBRZIdHfyQVgpj8bwavdIycurvuw8I8gl-V5yI-0UBxlsc4T5B9isr29ze6eu8mNn6HOz-BRQBc-HeyXAcQCizu6OkPOKNx5dLuulStU8u6YsaU5bJwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b128e0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Au2pXb_FO1FClSTGgaQoYho; expires=Mon, 22-Nov-2021 00:43:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5c9qH8TWW5_uakgpfMlAyP4qeN4_eau_YDutk3ajZyC-GxHN9g94WCTPLMrwgdYkcnpdPxnK5CzmlWf-OBQ5KMB9lLsMAL6o2W_x3jsVNZTcPUaWS37dZc5xX4QWP7IhVLhRysqhv_s_vGp1qSGDlaxbXs1yutkrnbcgdmFEQUcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1a3d0053-5ab4-46d7-8aeb-861cce3c414a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443cb7e0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhgL5apRu2ZKnoWkQBK9EEFz_bg1AQAAAMlRBdkOAAAA; expires=Mon, 22-Nov-2021 00:43:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - 'db67e884-707f-423b-8ffd-ab303737acd2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json new file mode 100644 index 000000000000..f0a06064c0d6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000401-0000000000000865-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4f51cd1f-f313-43e9-85bf-0ae197956b8f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc549833-a383-4ba5-b1d7-321359964166", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js deleted file mode 100644 index 9634fd04e3a6..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '62fbf2e0-4b87-4547-bc4e-414a72d24b01', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AsSw2KZ3NQ9AnhpejgZxtLk; expires=Mon, 22-Nov-2021 00:43:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAmKTqOYq6uCYEJLRFXE8L3cLKVxAwW4pg_WYnjYywVjEvA1pMNG5ZiANgm-6fWN3dp2YKzVb4-oDDImrh4wS83iwSiUH3cClvP0UvpHSXHv87TN-wVKX6oRJNLu92MtgrF5AenuCiKmtg_QIx4gCqnM8zO3KtdBkCNDKwqhHIEsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e898d0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=ArCCbCvGEZdDtBlsCZ5EXfU; expires=Mon, 22-Nov-2021 00:43:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1cI39JrPr8VfCkhE7sOw7ZA-RP3ZtiXi3PA6ZnVFZCblH0Djrbr3iaD4uwJJjWIiD8-LvwUBi4-KqtUvmsY7v8zHll1jsKLwFLJjvhNvXGTKTpdXeIc54ioJKfjxSgz7Wamf8zdy3MRfifDilRGcw4IeafoFBPHPWJExUIvyNlMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=7d831245-db2d-48de-adcb-d1008b626639&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23c16f0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhMt7ABjCmpMviX_rULQOss; expires=Mon, 22-Nov-2021 00:43:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '34740f9a-5bea-4f02-a1cd-af035c33d3fe', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:53 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json new file mode 100644 index 000000000000..dd162e9933e0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000402-0000000000000868-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "03a65d2a-4493-46bb-8179-c83ba131c7d4" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c05609c0-e897-456f-8f51-a11f6efe2bf3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js deleted file mode 100644 index d43d363082f9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3d8f5ff2696a159219b33712bbe0cd93"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2a83b11e-e082-4e18-9c58-cda02ca8e900', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AsqyQzciAk1GrkPKBwwRxjg; expires=Mon, 22-Nov-2021 00:43:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhbgP89NwJjL08li4dymN-kEyoEZDuBW0R8WkSB2w5z33CNYxpcOfnDYkEweA85dLf97-p5ylx8e7xCuXZmryayQOwMOhnTeKTtXYduWscxT-cnrHKXu6F36Rw-C1gSYxzim-nkEfX71_-6MZl0VqqM0sl2srwLgYwxZ_iYisVPcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec79c5f60500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AlhKFvhLOzFMm4jJaS9Ve_U; expires=Mon, 22-Nov-2021 00:43:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevriVSI0k2wJYLZ5PlsaoBByij0icjj4ejL_KHn9YdVhecrDsZzemonkwAwDW8PWA77n44IXn15RZOnNlCJbvhd8cfZZVoJvQxy737yXQdLwCX50aS7V51tGHfudVlpHdFtg5ECDSxiLggXxpWhO_mLYdx7rFGaU4cqFtJmlFpzPF8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=8a3a9ba6-91fa-443d-a914-ad2154ee8e31&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b464e030300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AjNtHmD_-FxHsPp0YT2lTnI; expires=Mon, 22-Nov-2021 00:43:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '26', - 'apim-request-id', - 'c8515319-b233-4e93-8367-ab536ad7e858', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json new file mode 100644 index 000000000000..827055e1759e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000403-0000000000000871-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "10cfdbfa-bf72-4506-b168-aaa4fa999054" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30f4b674-5352-4bee-8143-4cc707dda154", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:05:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js deleted file mode 100644 index 34142509c765..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "75554aece4db56a794c8fd18e29f84aa"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '48565adb-aef9-47ef-a60c-286687484900', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AqAQfGKPhyNHhbw5BTgTlQE; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrG9PZeeRQBXyeQCdCIUOl7VcqsY1a2Njiu48fA6hxpGeIXHcuAHwisw_ZAAg9_71-Y-PkhIvEPAHV2kOI-YPEdquDI5DFeP7CiixnF_DH-eVUKm4h7J1lP1D7TvJ7CJoYxqE5ldKA_okxqF4ccK8Zk8kXcMjmslys7hvyq2EbxUggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b5e8d0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsDkVcNKrQBLrXFrfeoe1ZA; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPRKbXfEiK59UWwi-JGUHHH8-ijuNHD1un-J4mw1K815VRyuDB1QmAHcPwbbheUBByyAs3Zgvfy_GG52ZIyB-FPuNbFyUekBaxcaMqXecvSp8q0_DRpfz3rIFrtl5DLps79BrEJ4Do0yCio7zqWVlSHQvHZqHz-6SxeZSFhMF00cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=c46be13d-f2d9-4041-972a-604504e98116&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-958862290300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AviShSF-HyZEgULqW5Q5xzw; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - '34fd3195-0ed8-4625-9e71-33dbd6ce789b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json new file mode 100644 index 000000000000..f0451a8183c6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000390-0000000000000832-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b1d6883c-54be-4ccb-9db0-44ad960a3b7f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "916b2582-ea07-44b8-bef2-d12eda1136b7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js deleted file mode 100644 index e9e3e0301e86..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "29c8e9f857f7d02d5af8c0102f103450"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd9ad8218-59ec-43b8-9237-fa876f7dc100', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ank5_wSigVxBoOqZF_kj-AI; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrOWun-sqrUxiD9X2z-2yvnMgkuffwlV2oa7-6NU-RwM4wNWCSlUDjEfUcSbC-skS2a4zfqqv2myQVmGz4EbJh7rJCqW19XRZzgLNU27_-Q5nQcn6GuSIi_za1c71fUk3j6K5S4dePkk1nPaFy-yExA5ceN_CGXdEKibZ-a_WSz78gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406950c90500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AgJCLUwHnGRCmc6_bhtHT7I; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5CUPKoRkyF6Xs067HuZr2ZhdOeJ-iZLJVH0zKtvnIvpE05c0aRVHp2Nb6HYwYblDhpcRNb0I7-Jafxc54UXlCcjLNtTdwAgHDmUzShPHT7aH2teCpshs_ao9pjLVAIrGY-7sx3WsyaldseJM7xmaZMTtWcU2eQFpvwX_5A13ReAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=37fe8233-e460-491b-aef9-241f21db068a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820079f80300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ateu5t_IKLFFtjRbq7LX7pY; expires=Mon, 22-Nov-2021 00:43:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '33', - 'apim-request-id', - 'd52b5957-b4c9-4434-9857-e447812f665a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json new file mode 100644 index 000000000000..64bb4f4d922b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000391-0000000000000835-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3132ca67-309a-4183-97fb-f92b0527f5b6" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b5616f2c-c1fb-4a11-bc4c-f4a39283f684", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js deleted file mode 100644 index 1a2d3353616e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "12b6a334f86fe91d41114a8211ae608e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7607f894-0aa5-46a0-a2fb-dada9abc9200', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=An0QAPUOQiZHsE33Ubxfty8; expires=Mon, 22-Nov-2021 00:43:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBE68AKkauAB04Ff0Li6YwNwPErTczhm-Kr_Z1jHyZO9LTJSFRSsQjhnWRwXtCv_KNlNd2gMV76SjUQ-1meLQx3lZbTMS4rv_GJR4lEASHqb56GHDqe1YEq3o-JUewcalQwtTbFWGxyfB4Itd5Mk0DIXTEVbiT8FRZU_DjTSyRRwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fd74e30500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsFIkz2EebNPrNcLqzrDIWk; expires=Mon, 22-Nov-2021 00:43:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdALCTQD6i3Sudw8d5HsI83UH6pX-wsYjBEXlxJRxRouZj5RjybXJAlk9fSg0_s2WOdkH7LThzz7-OKW6_kI9GgxgjBfBqLzC8HeGs5egkSeSHbsO1zgmDzRBxrty2EXRP3eJcv4jtCK7FY9qOP5WZxZ1x0xCdFiGHjDoHc_2KK4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=9ec47e8d-5785-4671-b0e1-037c2c74d59f&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29ba7ff0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhVbKU8GoQBPpwZDtN5hcrA; expires=Mon, 22-Nov-2021 00:43:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - 'e47c3bd9-7a83-4aa6-be44-e044aae2a7d0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json new file mode 100644 index 000000000000..0c3b5894d398 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000386-0000000000000820-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b469979f-2fa0-440e-8117-184d08f5e931" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c81debcf-c8b0-419e-b68a-281f6e6bed9f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "147" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 6cb39f7c1425..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7c8d4de95da91bbbef328a9fd5fde2f1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '6a546219-1c42-45d1-9f48-34344bb10400', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AliLQDfmNWdNqnT28iz1Jfc; expires=Mon, 22-Nov-2021 00:43:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJ1lKPMmILfoRgQlUZ_bw_4m812Wz94Cat7GWZeNFD1ZpacgT3LrEElaAFpfaOQFLtwjtlFvgxSngQRf1BPPE4x9ZIGr1DSuAvP1kQugnwlL_Fuaf6GHChEkhqqTnQOBMkmZMr5RCMMyYLYH-F7Zs5dZKRAbItu1w_QBIqtHYc0AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23ca6e0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AoElS2gTslpCtcTIf-Vho2c; expires=Mon, 22-Nov-2021 00:43:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrbBkyDEouyif25APGn1IQ0IpthmaYy4cOSVa4r-DtT9MWpyhUP0A6BuXg2U8xSBd3qzmOaSrvXVUDe4_RcgDXY8O4asI9QnX48dEyNEf9NDoLcq1-UqU44O2x7TyQXaKb6QJT6inZS_YxyKd6jdkbXitoGYIf3IBI2Nd6-9OyPfYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=7475e159-ae98-4915-8101-4c592bbebe2a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f0315ac0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AiTldzp_YiNFpV--rYs0qVo; expires=Mon, 22-Nov-2021 00:43:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '26', - 'apim-request-id', - '24df2f32-689a-4b3e-be05-7e52a8a3393c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..8a682f565c6d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000387-0000000000000823-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b8588195-dc7b-48ed-9792-57d9f1274269" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f933a9f-9059-40ef-90f8-761d943fd3a5", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js deleted file mode 100644 index 76a79f557587..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6e5e53c2e27941c69921ae711a3d42b5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8eedf68d-ba0a-4427-b534-41f139469c00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AqwedshkL1xGuwrv-rj1TG0; expires=Mon, 22-Nov-2021 00:43:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr007_OcU5TTAPBvJr85k-oTqoqm2P3WcFxDQvJ-xz_Wj7QEiAnPRG2UD2V5E_SwI0FsJMxyNWaD21-SlQ7fmL6QSsqGXcm-sYYfK0cdN9Uhoxla9H_1lno5o3A48VmujGiZPVfFc9oYASBQV9cQT-pxY60ngZhYf8HxasDpLLCqkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bc2ff0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ApDnxGDnhlRAvMnHNHIDNMA; expires=Mon, 22-Nov-2021 00:43:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9RZQJWHpGXs7c46_txS_35xIaTAPGkjK4mlVf_LNfrGkfSWMjc8G_aAEUIFZv04i6qAPOjpwPeWlOsdf_d4frg8tWfeTey99Fvb5_ns-vP7as-GI2NTY22iyv-jW0AAr4McBLMUVcgjJL2PUptgSTcJ6q0br8Qrp1Qeus4WpuN4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e4c24aa1-c607-49ff-8b9b-7001e805fc66&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553a92ed0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AiAHVXWznMRCm1cM-9GdBRI; expires=Mon, 22-Nov-2021 00:43:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - 'ae2b9839-3f77-4ad5-9eee-a5583e73d711', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json new file mode 100644 index 000000000000..a5c75b74fab2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000388-0000000000000826-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c4ffb43b-c17e-4fb8-8d30-eecb67809bfc" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "49d436ad-05c0-44c4-8b5a-fc872e3ddf31", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.js deleted file mode 100644 index e26942e95b99..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d2d93f114abe1fa04b62c793fc5dc2c9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c391d82f-7eb2-425e-bcc3-4df320edad00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ArIhny9oMl1Nnz7vNgNehKc; expires=Mon, 22-Nov-2021 00:43:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrl9VSiv9zVRGcJRCM_lKX8IKPR1HN5DroaCoYBsb82UtbfjFmgcV10C-emw1xKgd7cp-o7Xf8HtfhRdYKn6SiK6GVbGauKh8IUyVgOOlPLEzOeYZvlPI2RzQagzt0NZIMKpJotCAd9XghXBl4JNY1xSLk9LK2Ac8OGqqQb1rmfiggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fd9ae30500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=ApOkNBSYZJpBsdo7VeX3_UM; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrX_jBWgucoJLkjJ_OIaA4VeEbgG-J4_5xtn9QQsfpL_ZrPgc7zX8zSiRtdMF1XMIbNULRz0Ao83wZlCuGsZqVZ3dD4KHwv8uWvPr-ZoU-eNzGqXbcJmoZvF-CNnjDfMPDNdegCrX8r50OJBssqtSzEF_hYkiIEWrvnJDGsGA87GQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d5e04b4f-5e33-4a5f-84f1-0abcd293250b&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bceff0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AtJ0P7saER1NnU3PfHn5peM; expires=Mon, 22-Nov-2021 00:43:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:47 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '40', - 'apim-request-id', - 'baabb56e-edd2-4208-a4b3-6a5850294352', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..b7bbaffaa352 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000389-0000000000000829-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "978987c9-3c5b-49d1-8a0f-e28d949acfc2" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7659f584-2084-4a48-8034-c86f8f643466", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 19:04:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js deleted file mode 100644 index df079cae4261..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1dd37f3f-6715-4caa-8a19-e126b2162101', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkR6rqU9VshCsakapPydulU; expires=Mon, 22-Nov-2021 00:43:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWTnH7lQUzjgpglUbcXSb0ACUYX1HnTjWHp3Ttkx6imt5uj7DLBt335kx9s99XSKCPoqToTFjqP0DPqLrf_1dEwm1yKBtsGqs9u5UAho7e3Pqj5Ec1Tbnl7JMhAZeOX-vNdF3YNFLcLaON9px1BwGHRMyU9sP5Zy1hCtdPqulQJkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:48 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-95886b290300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AtACiYck6fVGs3PVutGe68U; expires=Mon, 22-Nov-2021 00:43:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTtILuX_72Q-YGcf5ZdwioNmCqlgUWeTl_jxh8zf0EyqTTeqyq-0bh_MhZ63zTu2CCLX1_pXCvhOrvr06LC0O9rb8_rTVjEn4f1yRdNwpQFc0HFtVtDGtlN0I5EevM8AeJQWBif-Epuuw5GaR4_aEkT_2amK9CQyqZNqQ0iVslQsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=f6a3a819-abbd-4dd6-a16e-216654baee14&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-771992eb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhYJcrttjdZKqW_c9t_dneI; expires=Mon, 22-Nov-2021 00:43:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '34', - 'apim-request-id', - 'fb861d1d-03dd-4200-8811-53041f52cb37', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json new file mode 100644 index 000000000000..3528e2ad95d9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000392-0000000000000838-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bfd84903-a9d0-40a0-969f-71e84890be0d" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4de859e3-0eba-4154-8811-3bc822fa8cfc", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js deleted file mode 100644 index fbca28f5bcfb..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2e4305c5-a471-42a6-8898-dc07a0dc6600', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AjwzbTrUlHdOoPP3elcDEoo; expires=Mon, 22-Nov-2021 00:43:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSBn04CprII0Lnp4ppYub_8TgVW_BYhuxx6NsZ0YZhlshOeGaNSB1PW-alsUWQ_rj7IH2sLCTh_YZTXFuW-VW4uHNoEDyJ2jXGHRMwTtbcpQ4TMNH6umPcXmF1IzyTK2yAzArAaNP26s_47UV8OIKqSSlLY_d2Uq0hD9gBjU60togAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9418a971-639d-4ab7-bc0b-6fb4771b0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=An0V8PZmmBZAh-796n2w0u8; expires=Mon, 22-Nov-2021 00:43:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIf9rEU6tNrrhdUzN6-vaQlk8yxbuVSF-6NdDC2gcT-5WZYP8q18Hs5yWaZ3Ua7vl1uawPNYpgGYk4KT3ZKyEts-Zz3x2HbPCKQ1JAuc86H6o-rGv2DY2zyeIMsfDDS1F5abQVWIVqziqmb-6Iq_paG7aCMPTrnd6WpOTDO62CxUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=fbb69a5f-e951-4aa7-86e5-98097885a9d5&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553ac7ed0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ar8HC80uUNlCpn2qTqHTViQ; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - '126c1856-0c50-4147-8823-9a6d3c06b1d5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json new file mode 100644 index 000000000000..db4da6774273 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000393-0000000000000841-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "125ee73e-80bb-42fb-a661-8f631622c04e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "63b6fd06-7e94-465f-a80f-cd1f3a0cc8c2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "35" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js deleted file mode 100644 index f38f854265f8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c88cafad4fdf81af74bb9cc82d9b2af9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '205c3a4e-81d7-4101-b552-682d5f31c300', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnnAhEQljKxLt4sYN8HI1oU; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPFhHjBTRBjOFyg75peKqM0jG-5iQuFsDIHPCen-fucu6jguDUm9tzm8iqroqnDw1ki5kTKuN8ZxUwgFU8JViw3z28ZnvtRgjO-xMzE4HZjwhEje2pDOEgJZrnWMVdMlRdByZDcsvJHinzonMuJ_V8udLTyvhhON6pfUiVmggddAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b46a6020300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AsxNShDbl6dCrltNPP6FdhM; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcP_u7ylawzBSWox7Zmw7Bx8wATqN04GmpJJjjgS_PKYtTDg6ZuGAeMvw1lkxKTQBlBvkaLicPOQyKK96GN189tqD0sDWPFfG4CQZv3wWm5_iatft8jTXmGlrhTQDrbHoW4vonTunTahxizQqvMIyCkvCoCj0hv6h2Kot_lQKA_IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:49 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=650360cd-0c43-4606-92ab-76d0f72326a3&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f775bdcf-e7a6-4aee-8433-7719a4eb0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Asa4Hr1YLBdOhDPymdlRTo4; expires=Mon, 22-Nov-2021 00:43:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - '8566d927-bfaf-4d1c-ae4e-7bf4e1325a74', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json new file mode 100644 index 000000000000..a55624fc90db --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000394-0000000000000844-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0788f742-8c6d-4315-aabb-09ee33e2b053" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f19ad0e8-bcd7-4a7d-8372-307475a925a6", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "57" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js deleted file mode 100644 index 7535ca912003..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js +++ /dev/null @@ -1,330 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cf05cd6195df256b68dcce03bde8be18"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '20626f7f-ef32-444f-98e8-8b770ff71b01', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Arg6GEYZ9bRFiOADowVtMq8; expires=Mon, 22-Nov-2021 00:45:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr754RBZQCxp4sT1iLrNADlFkqq_6X5bPj7QenYTdl9CFNwCkq4lpZioQ5RYMrlW-_jynZRrURE2QeKgFSQLd1TRv0H1ToBVsoHJXisB7FpP8vo5l6D8PC7FJ4iZpx8G6XM_y_pDxNIYhGm3LJez20lLRJKwSv2LDsIjtgh9OshDUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553a97f90300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkqYr_JYH2JMk9Iy7nLYltg; expires=Mon, 22-Nov-2021 00:45:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVkz2hN0yyNXd2Jt7sSwAW5jqKW9lzTMGuGxEeNWZXBxgdFN2OXDKNZmoNDtiVSymWP2TcsEtv08h9oAiylhjUACjd-WF8JIf_IW7Hv2D4QH2WpDwf-RbJt9AMLSC5mD1gMXCFFMLcqJiOrJR7MhHuQXHNssNukc7gVkCujPBWfkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=7c778c8f-fa8f-4be8-84f2-6478bc6a274d&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f2e5e40400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ai2CeEXjVS9DhPZWGsnH1hg; expires=Mon, 22-Nov-2021 00:45:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:50 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061', - 'x-envoy-upstream-service-time', - '357', - 'apim-request-id', - '822bfdba-30eb-4b18-8f7e-c5613d37eb9a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:51Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '38', - 'apim-request-id', - 'b3682554-ed47-4b99-8a18-49ba5511496b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:51Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'db9ed657-3521-4960-9e03-d8c5e672707a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:53Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '66', - 'apim-request-id', - '62440935-ad43-4e9e-b2d1-c6bd35b1f1a7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:54Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '295', - 'apim-request-id', - '82712bce-398e-4e3c-8118-d66fcca72fed', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:57Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '145', - 'apim-request-id', - '4bf1ad94-eb3b-4bd2-b8c2-e62dd97ab78c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:57Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '127', - 'apim-request-id', - 'e98db0e2-40b1-4ce1-9feb-6d6b432aa8c4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:57Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '155', - 'apim-request-id', - '9b59a1cc-1088-4d51-821d-e2686aea3230', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:45:57Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '138', - 'apim-request-id', - 'b9356843-57ac-42cd-b306-dd937a61ab9a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:46:06Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:06.8839853Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '283', - 'apim-request-id', - '27e90303-725f-4ed1-ad0a-c672b84bc154', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1395b3f7-2ab5-4b16-9440-07e5093ec061') - .query(true) - .reply(200, {"jobId":"1395b3f7-2ab5-4b16-9440-07e5093ec061","lastUpdateDateTime":"2021-10-23T00:46:06Z","createdDateTime":"2021-10-23T00:45:51Z","expirationDateTime":"2021-10-24T00:45:51Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:53.2490915Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:54.5392001Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:06.8839853Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '394', - 'apim-request-id', - '9ff0f03b-4d4c-4017-8ec2-b503475cd876', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:07 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json new file mode 100644 index 000000000000..d5cc24271059 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json @@ -0,0 +1,883 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "497", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000473-0000000000001025-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e2bfda08-f9fe-478a-818c-f23e0f820e7b" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b03a92e7-d759-4daf-81e2-8684bf03d269", + "Date": "Fri, 18 Feb 2022 19:06:16 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "234" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000474-0000000000001027-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "26a307cd-d8fc-4649-8627-8c1e93bbe3e6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70bc8cc1-b432-4921-b7af-c21037bc1bbe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:17Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000475-0000000000001029-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5748b41e-ef18-46d3-84ea-7eb36becbf78" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af72cda7-2a95-4b8f-922e-4457498cb2e2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:17Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000476-0000000000001031-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d1b33e69-d1e7-49e6-9b1e-658fa56bdea4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7397440b-4764-43d8-811a-bafc572201f3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "476" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:18Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.544939Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.5604984Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000477-0000000000001033-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "745f9e3a-cb9d-4c8c-8a10-1b447fa6281d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a8886fd-2396-4134-9b2e-7b3788dd2ad5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:18Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.544939Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.5604984Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000478-0000000000001035-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b28fe015-549f-464b-821a-9bd884f058b2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "46554baf-b2a4-4013-8be7-7706ac15618a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:23Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.544939Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.5604984Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000479-0000000000001037-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6ca9c54a-b15d-4c51-b785-de698cc330d9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf2b7b4e-5df7-446d-b29d-41388cfc11b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:25Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.544939Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.5604984Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:25.9334594Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/21084029-c4bc-49b5-ba75-c42fadbd1b6b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000480-0000000000001039-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e74e63bc-928e-46eb-a081-425f428b94f8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d9d3ea4b-4d40-4f1d-beb7-a06f049b7d11", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" + }, + "ResponseBody": { + "jobId": "21084029-c4bc-49b5-ba75-c42fadbd1b6b", + "lastUpdateDateTime": "2022-02-18T19:06:25Z", + "createdDateTime": "2022-02-18T19:06:16Z", + "expirationDateTime": "2022-02-19T19:06:16Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.544939Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:18.5604984Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:25.9334594Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js deleted file mode 100644 index 0ce4a684c848..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js +++ /dev/null @@ -1,130 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "28b46fe46c0398ac35b3cb4483489f27"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f1f6b24e-6a25-4d20-84e7-ef7e16fc5300', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ar0P2GfPwnxGvqsHx1dZzSg; expires=Mon, 22-Nov-2021 00:45:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryhRX7cRa1Iy5WnCuWnj_yyLG8OvuRekQUcyTVkdUqoTzYyO-pCCG0cYLNnE9u7M1Qtq2O6mq1JUhT0rWEOzLo4beT6mKNiEgJlVf3qgcjN9qOEFZeK-h8n_CvadoLgAOXzxiMimsFQPGp9ce0u-Hy9xiKe65yZRYj_NkeXzP_xsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:39 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406903d70500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AvzV0ZGD8aJMuS48jtddLIA; expires=Mon, 22-Nov-2021 00:45:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroAm2vHcWsaRFSMK3f1-UlaDS10eCJ_n1MYpm-ICD15Qd7teyM70aUuPrCMkm7xe77Lr9zlJ-HhuMaFAJtg3ZH5wue1OmdfVyDjTn5mgxAcMfXzD76J3LPaJiH6RyOb_Ig-d6H7jsfhd-VTXAt_CjllOtJHZX-nZJQnNTbYK-wRkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d1080ef6-3c8f-48fa-aa1a-5a033b6d3daf&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '956061d5-661c-4b1c-b3b2-6a4775130e00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ak2Q7GfwUw9CrOXC6RrMMUI; expires=Mon, 22-Nov-2021 00:45:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Document text is empty."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '19b4904e-6408-4d61-aa0e-b7eb5a31bf9c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json new file mode 100644 index 000000000000..5e2e3be8bd92 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json @@ -0,0 +1,61 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "186", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000466-0000000000001009-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ea87093d-5058-496e-97d8-5f47556b65d3" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "72eb4438-7cde-4c82-9253-b8e819ed9c5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Document text is empty." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.js deleted file mode 100644 index 07acdc57d7b9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.js +++ /dev/null @@ -1,130 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "24c8a2a5a8e45f8e91b3a40ae590296d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '228d2d39-427c-4fd6-99ce-9e8f0fea5a00', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AhBa8vkkhidGkicFZbgKW7w; expires=Sat, 27-Nov-2021 02:06:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNSM-CDAzeeuNPBVaFJFif9KbprDthZiR5c5rQRPuJrkX4KMI6zwPHV_Wmu4RgtRZa33qzisVXdzFlaqkY8RVsOCata6g2TifgaF8SA2HsOPVCeOSVAsVV_eybMoB_i2Dp_pdmAU2LSI4E6MwNTpfaJVA9em_ph9RPLOWODGCbWUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Thu, 28 Oct 2021 02:06:30 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c9037c69-39c1-4e16-a0d3-40866a6dbe00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AhpMMOkbpDNGrwkvgsKLvDA; expires=Sat, 27-Nov-2021 02:06:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9TpAqfUvgZPpohoryGMB78rU95ZHWwYbT3Mu9qmJKiBbOx1wO2NLhWJgxO2HlW6HTVWCXJzsRV7vdK8Cdtrbstcus5LmzRMAATTc4iRoeHwAwtQC-m6dBjA1amAMI1P7LZ_qB2zzFxiUKL_ntzBMtKzCZ-2BITdpkGwoOypd9wIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Thu, 28 Oct 2021 02:06:31 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=05ea1a3b-3148-4d3b-8027-13b02b412393&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c9037c69-39c1-4e16-a0d3-4086726dbe00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqDtKzvu_CZFhLGm9XAxeplz_bg1AQAAAKb8C9kOAAAA; expires=Sat, 27-Nov-2021 02:06:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Thu, 28 Oct 2021 02:06:31 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}},{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"InvalidTask in AnalyzeInput","innererror":{"code":"InvalidRequestBodyFormat","message":"Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name"}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'd8587d67-d911-4803-bf6c-65fe8dcdbd1a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:06:31 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json new file mode 100644 index 000000000000..8bdbc2143e75 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json @@ -0,0 +1,66 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "268", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000567-0000000000001226-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5ff7784c-ac2b-4817-b61d-c6364aaf9c4e" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "adfb0dd5-09a3-4683-8c7f-3879030b2fcf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "InvalidTask in AnalyzeInput", + "innererror": { + "code": "InvalidRequestBodyFormat", + "message": "Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js deleted file mode 100644 index 05cbe710564f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js +++ /dev/null @@ -1,290 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "883180c67a3f835391e3ac962c491ec1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd0be9212-65fb-4ebd-8fa1-582d6e79e900', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AggEs6dvkBxNqnOrddb0e4o; expires=Mon, 22-Nov-2021 00:47:07 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrt1rMQZeesGrZFnlEq6z7w_CyiWRNOhvS5z6_yr5sKM_YZZ_B4p3yvK9-QrbVp2OjU7mS9EGVOOq3hzbW1x8eh3jt3g--ZWJ_4F9Sa9FfAOSWzClsg-OPTPsRosD_L7seVhyCrZyLJP6dEUw5NeUqPAxohM7z8XTa3jg3DNE7JdEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:06 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9418a971-639d-4ab7-bc0b-6fb42a2d0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AlIFemGO58dJjanNUjrnxEY; expires=Mon, 22-Nov-2021 00:47:07 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPwnxM83OYtJlNnnHEMg41TVhuPMjtBSR22EYGiEJKLBIY0LQ0MutvVASd0cxoIAe6bzcv3Sf5clpC5J-Ag1DpuvVOfWxUOUegQBkMOI7ymQxBXx54A2Vs4b0tVZxPtJcstdNG_bqXG6jdxMe6bz-oPpLwwoL8nRcdnhjGnIHI0AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:06 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=cbd05ec3-36f2-4e48-b7d8-79461aa291c1&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29ba0130d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhOtzRtu7wJJjLAdQflv908; expires=Mon, 22-Nov-2021 00:47:07 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:06 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e', - 'x-envoy-upstream-service-time', - '588', - 'apim-request-id', - 'a4edc6d8-bfb4-4ef4-bbb5-0d384aa7f6ba', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:08Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '6613f094-19b5-4a94-b7d7-51e61d8638fd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:08Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'b7aa85d6-21e7-40aa-87c9-d62d93c23979', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:08Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'd794d01a-ed38-4be2-8f0c-38de9e74e007', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:08Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '7e4a64d9-5503-452c-ac96-5c1841c61a92', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:14Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '276ca1d3-d7e2-41cc-b8b7-19e91e6084b0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:15Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:15.969779Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:15.2887294Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '699', - 'apim-request-id', - '3808ea08-5d1a-4404-96c5-639ae89ddf32', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:17Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:15.969779Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:15.2887294Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:17.0123763Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '371', - 'apim-request-id', - '8ef56f76-1fde-451c-ae47-0b5dc321a81f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/64353502-5103-4544-b076-044fc95b4e1e') - .query(true) - .reply(200, {"jobId":"64353502-5103-4544-b076-044fc95b4e1e","lastUpdateDateTime":"2021-10-23T00:47:17Z","createdDateTime":"2021-10-23T00:47:07Z","expirationDateTime":"2021-10-24T00:47:07Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:15.969779Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:15.2887294Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:17.0123763Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '238', - 'apim-request-id', - '3c113e29-a554-406b-8fc9-c578586fa2f2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:19 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json new file mode 100644 index 000000000000..1990b1137a13 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json @@ -0,0 +1,580 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "510", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000512-0000000000001108-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c73dfd7a-1bae-4f48-8387-045842da4d13" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0da4da8e-5924-49bc-924c-9697f8b37bde", + "Date": "Fri, 18 Feb 2022 19:07:09 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b38cf43-02a8-4aff-a6aa-12134784df07", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "265" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b38cf43-02a8-4aff-a6aa-12134784df07?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000513-0000000000001110-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e9f7cc1c-c379-40fd-b0f4-c2a7d11a9918" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "116fcf93-273a-4e86-b99a-7686db141c70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "2b38cf43-02a8-4aff-a6aa-12134784df07", + "lastUpdateDateTime": "2022-02-18T19:07:09Z", + "createdDateTime": "2022-02-18T19:07:09Z", + "expirationDateTime": "2022-02-19T19:07:09Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b38cf43-02a8-4aff-a6aa-12134784df07?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000514-0000000000001112-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "794d6a04-1727-415f-8bbb-12b495aca1f9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a58e5e9-9c0a-47da-9363-e1f3ec288cce", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "2b38cf43-02a8-4aff-a6aa-12134784df07", + "lastUpdateDateTime": "2022-02-18T19:07:10Z", + "createdDateTime": "2022-02-18T19:07:09Z", + "expirationDateTime": "2022-02-19T19:07:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b38cf43-02a8-4aff-a6aa-12134784df07?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000515-0000000000001114-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d7972a45-5077-4636-b2d4-e92b82129252" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75a56ad5-dde1-4ef8-8a65-283d3a8424b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" + }, + "ResponseBody": { + "jobId": "2b38cf43-02a8-4aff-a6aa-12134784df07", + "lastUpdateDateTime": "2022-02-18T19:07:11Z", + "createdDateTime": "2022-02-18T19:07:09Z", + "expirationDateTime": "2022-02-19T19:07:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:11.8607768Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:11.8854545Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b38cf43-02a8-4aff-a6aa-12134784df07?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000516-0000000000001116-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f18cbb14-fd20-4f83-9699-e9dd5217a09e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8e91aa3b-e59a-443b-b56c-fbe9389521dd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "718" + }, + "ResponseBody": { + "jobId": "2b38cf43-02a8-4aff-a6aa-12134784df07", + "lastUpdateDateTime": "2022-02-18T19:07:12Z", + "createdDateTime": "2022-02-18T19:07:09Z", + "expirationDateTime": "2022-02-19T19:07:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:11.8607768Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:11.8854545Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:12.5439983Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2b38cf43-02a8-4aff-a6aa-12134784df07?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000517-0000000000001118-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dbdde580-ad7f-4fb5-8d0e-9e20f95edc94" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "232456ea-a0e8-4100-a190-5c961666040b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "249" + }, + "ResponseBody": { + "jobId": "2b38cf43-02a8-4aff-a6aa-12134784df07", + "lastUpdateDateTime": "2022-02-18T19:07:12Z", + "createdDateTime": "2022-02-18T19:07:09Z", + "expirationDateTime": "2022-02-19T19:07:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:11.8607768Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:11.8854545Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:12.5439983Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js deleted file mode 100644 index 260c62b5ef5e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js +++ /dev/null @@ -1,270 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "586a571f3405fc4a91192c8057f26eba"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'cbb9eb5b-8328-4a0b-b8b9-195d975dd900', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkUry271SxpLnt_Wo3dhj78; expires=Mon, 22-Nov-2021 00:48:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdJxkwfrYg6qWANPrpg7ZSPzM3zSchRQcHqtZifkyLF1NP1oYvBWXe6ejO_TcsIWUZk-aXy3qBSwWRia--rps-9Uw3G5cEeizH3f1zu52R-jdM2xghjU11OMJuZ5S-_F6kpo2m-67Fg_G0fGPPA-RLncwLeJjRcBjdrPR93xchqcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:21 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-95886f430300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=ApaZfLg9gbVLpRHEM_S3VFs; expires=Mon, 22-Nov-2021 00:48:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr91c1DpT3g9osuBHqrxWUWZECt4dNQlaeS-cP4WfgW_hUfSo_S0odtQV-ewrcCX5zwLsYqQ2-lX1VUak0fi0gdVbThp4z_Tug2wr82W5bhJ-grJbTVsLts-6SZ_TmWdlEq17Yl2mMA5acENBgO50IkMGVrYEhs9ODwRblgGh6h3sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:22 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=90e93548-6cdc-4264-ba6e-41833d07e890&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406961eb0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArnOVsRyQSZNihoUDO8JKBY; expires=Mon, 22-Nov-2021 00:48:23 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:22 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"UnicodeCodePoint"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e', - 'x-envoy-upstream-service-time', - '176', - 'apim-request-id', - 'b6016de1-8d69-477b-a214-c4f6461d8644', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:23Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'a7393981-ffb4-45c3-b394-fd925ae381c4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:23Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'c925b5e4-69fe-45b2-9bc5-8dadc9ebdda6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:23Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '2558dedb-3146-411e-b55b-6cf6590b63c8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:24 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:23Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '322aeed3-f3b1-4c69-8a4d-1c61ed110d31', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:23Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '40ff3a14-49f5-4ed0-972a-3a6b6b1a7b18', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:30Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:30.981834Z","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '65', - 'apim-request-id', - '82b83307-a6a5-415a-ba4f-203cb1071574', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/10839397-309a-4a25-85c4-d28835c66a9e') - .query(true) - .reply(200, {"jobId":"10839397-309a-4a25-85c4-d28835c66a9e","lastUpdateDateTime":"2021-10-23T00:48:30Z","createdDateTime":"2021-10-23T00:48:23Z","expirationDateTime":"2021-10-24T00:48:23Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:30.981834Z","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '138', - 'apim-request-id', - '6b8e0571-6019-464e-965a-fa565c932f90', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:30 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json new file mode 100644 index 000000000000..d61e06ca48cd --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json @@ -0,0 +1,370 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "247", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000558-0000000000001206-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "43f1a8e4-7a9e-45c8-a8c7-c6fc7e27e627" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f74c0d69-a22a-42d9-8239-2700dc88adcf", + "Date": "Fri, 18 Feb 2022 19:08:09 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "212" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000559-0000000000001208-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9aab2dd1-f452-4efb-b099-97647031df6e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77df5413-f2ba-476d-81f3-c70cd4f4912a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:10Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000560-0000000000001210-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d5c6417e-dbc9-4297-987e-670c238057f1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2c887440-ffd9-4519-a075-5624cb244757", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:10Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000561-0000000000001212-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a2f627b0-a116-427b-b374-6eb660f0022e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f80d288a-8036-46e1-b9ba-c381c840924b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:10Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000562-0000000000001214-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ae4cb6ad-2ee8-4e7b-a8e4-0b4f3e82a227" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ffa83f1-8f7b-43f3-a214-097d6b47e9d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:10Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000563-0000000000001216-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c8bbb21d-c613-4c64-93ec-bac7bf682bd5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c7a9d28-0823-485f-8f29-299f11d9a6fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:10Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000564-0000000000001218-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7425195d-b847-4171-8d2b-921cad7f1e25" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "360c6c81-d2fd-48d0-9673-719d6117ebcd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:17Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:08:17.9182073Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000565-0000000000001220-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b4999f2c-c4ed-42af-88b7-5e7913b2d913" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bfff34e-4f22-45dc-8e9f-808af98e65f1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "jobId": "2e4f80e3-a5f2-4a44-a9fa-6d2c672a89e9", + "lastUpdateDateTime": "2022-02-18T19:08:17Z", + "createdDateTime": "2022-02-18T19:08:10Z", + "expirationDateTime": "2022-02-19T19:08:10Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:08:17.9182073Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js deleted file mode 100644 index 811a4a409f13..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js +++ /dev/null @@ -1,330 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cd38c4c6eb5d8af4f0f3e496da5ffdf1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c262df95-60f0-4674-9115-12c7eeed9801', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AuWEmXL3U6NLpV5ZFB7IgRI; expires=Mon, 22-Nov-2021 00:47:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1jMnSj393wQYfq4Rz6a_XuAm8u91im-Oo6BSgT8qyHSEy5uhNvOd7jUpi-A1YDZ5rSMdKSZ4BiHLfaDCfNDeoNHCRo-QjQRZnIBYY-84eo-97QTZrLtM7NmduK42otnlLW67lVcUbwB-T2gl8faKs_zGnvcTJZP5N5peVl_gBJ8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:31 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c64caa61-3fcc-4dcd-8dea-7ea1c75e0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ApL6dE34TWNKt5lgYjzkolM; expires=Mon, 22-Nov-2021 00:47:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVm8aHHkzALc3h9pljvdmCco3YgGnZAdRrRKcYIHnG0nyUOzCUaFJwfKSaB6m8exdUJ-zL9ZeBO3pFF09zkjvAI2f-T9BjG32XiA5OLXhaShkoNgif3BkV0YjoCuO8dVfIvgVg5VgjioxnXqJfr3UP0bic7O2_JFIZgGcNdgWzzAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:31 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=f483f6b4-6c71-415c-81da-2059217bd4f9&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0e056ee7-0b6b-43db-8e41-750be4ac0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AkT6RSnefY9JiDhO8_8pr0Vz_bg1AQAAAKNSBdkOAAAA; expires=Mon, 22-Nov-2021 00:47:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:31 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f', - 'x-envoy-upstream-service-time', - '273', - 'apim-request-id', - 'd8538e24-a785-435c-a811-feaf8b8b419c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:32Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '535bb2c3-42b8-4480-80fa-4cf272a2dc18', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:32Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '02dae71c-bb5a-4146-a2fb-b2d8295062e2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:34Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '133', - 'apim-request-id', - '4e45e822-418e-48ef-bcd1-9f6c302b950a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:34Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '106', - 'apim-request-id', - '90e5bf5e-58ba-41e5-ab32-18e3e1690f85', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:38Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '157', - 'apim-request-id', - '6c4a191e-8bf5-4d1f-a37a-67a7f9602361', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:38Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '228', - 'apim-request-id', - '1a2fb68e-49c7-4ac0-b459-b0491fed8a83', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:38Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '205', - 'apim-request-id', - '3de0407f-5afe-40cc-bd2c-e92ba162f1ec', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:38Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '105', - 'apim-request-id', - 'ea57262e-64cf-4050-8f79-44f264ce6fb1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:46Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:46.298818Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '171', - 'apim-request-id', - '2293dcc9-043e-4719-a69f-830bddd910f4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c7a72afd-94cd-4e1f-a206-6b56a682139f') - .query(true) - .reply(200, {"jobId":"c7a72afd-94cd-4e1f-a206-6b56a682139f","lastUpdateDateTime":"2021-10-23T00:47:46Z","createdDateTime":"2021-10-23T00:47:32Z","expirationDateTime":"2021-10-24T00:47:32Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.3183461Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:34.2605819Z","state":"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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:46.298818Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '249', - 'apim-request-id', - '34dd1a06-7245-4c51-888a-5a1f3e3900be', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json new file mode 100644 index 000000000000..ee626bb8734a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json @@ -0,0 +1,609 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "436", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000526-0000000000001138-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "93010bc4-614d-432b-8d8a-aebe282523dc" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "894e1228-603f-40b2-955d-3f5cf51b7290", + "Date": "Fri, 18 Feb 2022 19:07:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "345" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000527-0000000000001140-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "42cb5c73-946a-45a7-a84f-5f515ac72745" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f8ab63a0-7914-41a3-b7ca-499fd837ad01", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:27Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000528-0000000000001142-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "71ec6acd-82f6-479f-8e36-f2040602f744" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a0e997b-f676-4b28-9866-f57973723146", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:27Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000529-0000000000001144-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c00d5cae-116f-466a-b05e-ab8d73469ead" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8fc98aff-96ce-4dec-9640-abe8fae5ffcc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:29Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.1233518Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.2829308Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000530-0000000000001146-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2b3ab306-7a4a-41c0-b34d-5771b6bfdee1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27fc23e7-c0e8-46b2-8884-e57cc001efab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:29Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.1233518Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.2829308Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000531-0000000000001148-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1b6b1b54-8ef1-4667-90b1-4c89e35a899c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90b645b1-8de6-4b30-a1a4-7f7a0b7e340a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "252" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:29Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.1233518Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.2829308Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000532-0000000000001150-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ca93cfb7-c04e-4060-a5de-5cbde4ed7f88" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "268c595b-dd9d-43ff-b6cf-058f1f41b1d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "182" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:35Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:35.2737816Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.1233518Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.2829308Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3fdba495-0671-44f3-ac66-f30622d79ba2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000533-0000000000001152-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d16a4aff-a9eb-4a9c-b464-412f8d7fdd63" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dda1d5cb-fa16-479d-b17d-daa80ad12665", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" + }, + "ResponseBody": { + "jobId": "3fdba495-0671-44f3-ac66-f30622d79ba2", + "lastUpdateDateTime": "2022-02-18T19:07:35Z", + "createdDateTime": "2022-02-18T19:07:27Z", + "expirationDateTime": "2022-02-19T19:07:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:35.2737816Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.1233518Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:29.2829308Z", + "state": "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js deleted file mode 100644 index 63ea9fa2a330..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js +++ /dev/null @@ -1,130 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fdbacce056d3180da0a43c0748bb1396"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7ad4bc75-920e-495f-ba7a-ab19f03a5100', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Al5kirwUS3JJh3AlsoMeiPQ; expires=Mon, 22-Nov-2021 00:48:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7QpgmrzBFWUTjUnbuBBLAuwk0rcTV_y-_c-dvCCp9okLuL7aclTOMs4EgxUCWOgnS8puRQYRcrdD27-ehDfqFDqdCjF-zel51Gh0x9-vU2hDk0uF8QG9Myth3uB819WPEtP0wsy229AqcdMlm-3_-H6Hbi2obQjXwsKQY8JVeXYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b2a1b0d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AuALrmpFpK5IkEmSVb6H1NE; expires=Mon, 22-Nov-2021 00:48:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd3RF9d58Vs6isMwAq8EalhE2G8DdUbl7OS4od-v0MnhOEQOC7oPRYD38CKRV9bUxGvQOlhKOkMpLdn_RLdDBhKErnonhdfMJHoGVmU8bo7C-9sLFRo5VmD_v_Ep5K0MsGkiMNIfhY5D8oMaW484-PEch5Ri0ILsi-PNMx7evVi4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d0c31152-8c39-4079-8cf2-d1f024c53550&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a4435c920200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsL9Eu_FU9hCr5Th75H_g-s; expires=Mon, 22-Nov-2021 00:48:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"bad","stringIndexType":"TextElement_v8"}}]}}) - .reply(400, {"error":{"code":"InvalidRequest","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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '2150417f-890f-474d-9682-be460fcf0877', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json new file mode 100644 index 000000000000..d4db53bc9500 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "190", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000566-0000000000001223-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "402a6f07-c21f-4bee-bd79-d95180d099b1" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "bad", + "stringIndexType": "TextElement_v8" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "3069d2fd-cff1-4779-bc05-f88591d9db87", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js deleted file mode 100644 index 08c9c8b35f31..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d1c43b9d04e7f9e2d9e2bac6086a994c"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js deleted file mode 100644 index ca011cd16bb7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js +++ /dev/null @@ -1,210 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "204756a0ef7bb31d61c833d32a9152fa"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '676d3509-63a1-4e4e-98c2-3253d1740600', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Auq6BeUeOPFEo8qopQ8pBVA; expires=Mon, 22-Nov-2021 00:48:17 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAlPFCLn57Xx6sfM2byaOoGj9VaKYkOQstfFy4NAYQi1nWG2MgVEyxv7qbddIy7pIzLBR27ttPaSv8E5xjW-BmeckWNvu9olFnhQWlov3B_FNyj4TaQjqRnEfeOTtex4vlJGYB9VaAbIFoPaPaqAo52IIdqZftnN7KZ1wNbK8UVIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:17 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b071a0d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ap7yCvOzdFxOjPN_TNRQtEs; expires=Mon, 22-Nov-2021 00:48:18 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYiN1WAkBO4boN5GtZgqlFOvt8Wb3j4Tv3noXQ__i8fqrP_XTvfQDW_cyytFAYKk2leqXntogUnTsRHJJGwVfTRvZLUtwL9LyVY3e9oTZKQxJwTcwd0WwJzJ3mEjY52kvH63XcZF8cHOHUIkgh3EwKedNbI1x5WJpB58U_ceKP88gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:17 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ffcc34ad-4f1c-4055-a4bf-720171a015bc&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f24ff40400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AmfOOFIVrQJPhM8mXMcr_eE; expires=Mon, 22-Nov-2021 00:48:18 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:17 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"displayName":"testJob","analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4082ff78-8884-45b3-897d-e260b7e4eacf', - 'x-envoy-upstream-service-time', - '185', - 'apim-request-id', - '3694a611-6557-4c6b-971e-65d17e96867a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4082ff78-8884-45b3-897d-e260b7e4eacf') - .query(true) - .reply(200, {"jobId":"4082ff78-8884-45b3-897d-e260b7e4eacf","lastUpdateDateTime":"2021-10-23T00:48:18Z","createdDateTime":"2021-10-23T00:48:18Z","expirationDateTime":"2021-10-24T00:48:18Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '21081f98-1786-4700-a791-dec41eb7600b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4082ff78-8884-45b3-897d-e260b7e4eacf') - .query(true) - .reply(200, {"jobId":"4082ff78-8884-45b3-897d-e260b7e4eacf","lastUpdateDateTime":"2021-10-23T00:48:18Z","createdDateTime":"2021-10-23T00:48:18Z","expirationDateTime":"2021-10-24T00:48:18Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '6d90ab2f-d561-4b59-ba45-3bf6c06392e2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4082ff78-8884-45b3-897d-e260b7e4eacf') - .query(true) - .reply(200, {"jobId":"4082ff78-8884-45b3-897d-e260b7e4eacf","lastUpdateDateTime":"2021-10-23T00:48:20Z","createdDateTime":"2021-10-23T00:48:18Z","expirationDateTime":"2021-10-24T00:48:18Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'a5b75630-4876-41fb-a482-71f10b29443d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4082ff78-8884-45b3-897d-e260b7e4eacf') - .query(true) - .reply(200, {"jobId":"4082ff78-8884-45b3-897d-e260b7e4eacf","lastUpdateDateTime":"2021-10-23T00:48:20Z","createdDateTime":"2021-10-23T00:48:18Z","expirationDateTime":"2021-10-24T00:48:18Z","status":"succeeded","errors":[],"displayName":"testJob","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:20.6497738Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '87', - 'apim-request-id', - 'f6f4daa5-daf1-4c6a-8d0a-df9019d61fdd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:22 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json new file mode 100644 index 000000000000..2e1636627e6d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json @@ -0,0 +1,317 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "821764b0-7397-4b27-b1b6-d82fda292593" + }, + "RequestBody": { + "displayName": "testJob", + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "07674e89-5971-482b-92ad-d5c987a25b9b", + "Date": "Fri, 18 Feb 2022 19:38:27 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "186" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "70686b19-9206-4c53-9f7a-98c743dd4394" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7583311b-ab9b-4115-a2dd-5e234e027cc5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "dd1ac92b-7113-40fd-b6d4-97c961d79479", + "lastUpdateDateTime": "2022-02-18T19:38:27Z", + "createdDateTime": "2022-02-18T19:38:27Z", + "expirationDateTime": "2022-02-19T19:38:27Z", + "status": "notStarted", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "51dd3216-3b5e-4fd7-9be0-942594d22e1c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "370d5f7c-c82b-428c-83a0-9a93258a02ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "dd1ac92b-7113-40fd-b6d4-97c961d79479", + "lastUpdateDateTime": "2022-02-18T19:38:27Z", + "createdDateTime": "2022-02-18T19:38:27Z", + "expirationDateTime": "2022-02-19T19:38:27Z", + "status": "notStarted", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2032fac6-3d42-4385-952b-875b411c1971" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d52bb3a1-45a7-41ce-9bbe-6ef9e5aec48b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "dd1ac92b-7113-40fd-b6d4-97c961d79479", + "lastUpdateDateTime": "2022-02-18T19:38:28Z", + "createdDateTime": "2022-02-18T19:38:27Z", + "expirationDateTime": "2022-02-19T19:38:27Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b57539ad-15ff-44dc-a6ed-a8ae9575f128" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "530b5ebf-43a9-43d2-a9b8-33c962e7f739", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "jobId": "dd1ac92b-7113-40fd-b6d4-97c961d79479", + "lastUpdateDateTime": "2022-02-18T19:38:28Z", + "createdDateTime": "2022-02-18T19:38:27Z", + "expirationDateTime": "2022-02-19T19:38:27Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e05dd5dd-bf58-40c6-aab6-696f44bc4335" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24ed4ae2-d7c0-4f24-b9d4-6fb98ccb87a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "dd1ac92b-7113-40fd-b6d4-97c961d79479", + "lastUpdateDateTime": "2022-02-18T19:38:28Z", + "createdDateTime": "2022-02-18T19:38:27Z", + "expirationDateTime": "2022-02-19T19:38:27Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd1ac92b-7113-40fd-b6d4-97c961d79479?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e9fa7042-88f9-44fb-9738-5a844a514c37" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e7583fc-4bc7-4b1b-8226-3114f8d63284", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "dd1ac92b-7113-40fd-b6d4-97c961d79479", + "lastUpdateDateTime": "2022-02-18T19:38:35Z", + "createdDateTime": "2022-02-18T19:38:27Z", + "expirationDateTime": "2022-02-19T19:38:27Z", + "status": "succeeded", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:38:35.1018755Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js deleted file mode 100644 index e8cb76b4670d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js +++ /dev/null @@ -1,330 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a4ffbed8fae59affb4b60746250e226c"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd8f7ce3e-3439-4a1b-9e70-1599547cf900', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnSTHgY0WO9Km6Fq3P5YR4M; expires=Mon, 22-Nov-2021 00:46:20 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrsechtp4OEXyQvYyCsbqZ-iNtK5qSZjgKy0B7MMxMrPrIp9PhWGB04fwLzkUwKBsQ8E0XwBdGU1SQRNGAdTUiXd_AAm-gW6DZScz4o_G80DIz0n9XFWwRJYzWCHfQG04r4vK-LUS2eQnaalse9Ud1cYV0R9FjSMZPF0xKA_k5WOwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:19 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f96622e0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AjqzNhqKnLlKoPaqGOaX3t4; expires=Mon, 22-Nov-2021 00:46:20 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr43Pjq6pY1oxkgCsB0Ccw2i9ehDJYiMDzfCALkpnkJGZ75TMPvXDesGj_6sstIx8YyNCWM9RsPKxlfqxaFXZ7f3HbEaYdxBw6gGkb5iPyGnqvVLHE9tlIA5Tc2sHm043D3BGeKtc4HV4UldSXVyx_j-G3ve6ZLlhGjV3cWjrWWkkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:20 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=94efc2ca-98e3-495a-8e33-68e1e9c168e8&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f0353ba0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArwNdGN_SM5Hm0Urr1scO30; expires=Mon, 22-Nov-2021 00:46:20 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:20 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":"w"},{"id":"19","text":":P"},{"id":"1","text":":D"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1', - 'x-envoy-upstream-service-time', - '483', - 'apim-request-id', - 'a0152470-17c0-47e9-af9f-e77f119f46fa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:21Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - '0ad18f16-25ae-41a1-9019-1377510f92d5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:21Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'f8390373-5734-4592-8fdf-9aa9a742741e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:23Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '96', - 'apim-request-id', - 'e0c57787-b1be-41ac-8a9c-09f2ae43c0cd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:23Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '102', - 'apim-request-id', - '8f5ab071-5c04-4d4e-9042-d89cdbdb123c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:27Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '103', - 'apim-request-id', - 'd834efcc-3525-49bb-8032-d7d333cae1b3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:27 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:28Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:28.85463Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '167', - 'apim-request-id', - 'e3bc693d-8f10-48c1-9b79-d144996da3df', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:29 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:28Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:28.85463Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '326', - 'apim-request-id', - '20bd9ac1-38c5-494b-ab74-5a5314c5b617', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:28Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:28.85463Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '254', - 'apim-request-id', - '36d26f9d-f3df-42d7-a69a-f1544965b826', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:36Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:28.85463Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:36.5488329Z","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '464', - 'apim-request-id', - 'dd8a1864-5cd4-40d8-9d68-49f3d3b10cd4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b08e3d20-cbe5-450c-9269-4edf223966f1') - .query(true) - .reply(200, {"jobId":"b08e3d20-cbe5-450c-9269-4edf223966f1","lastUpdateDateTime":"2021-10-23T00:46:36Z","createdDateTime":"2021-10-23T00:46:20Z","expirationDateTime":"2021-10-24T00:46:20Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:23.2110431Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:28.85463Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:36.5488329Z","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '529', - 'apim-request-id', - 'fac280ee-3796-4f01-9811-f8fa4fc0b622', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json new file mode 100644 index 000000000000..167071accd5f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json @@ -0,0 +1,895 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "440", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000489-0000000000001059-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "20565ca6-004d-48ac-8a40-d80e1af9ece6" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "w" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ac484945-27b9-45ee-a374-75529d0638d6", + "Date": "Fri, 18 Feb 2022 19:06:38 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "386" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000490-0000000000001061-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b3e3a0d5-67dc-41df-b5d8-07ad9ac4c5cc" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8a92fdce-76b0-439c-bf14-cc2dd663df32", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:39Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000491-0000000000001063-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c01822b7-096f-427c-b90b-332b12808516" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "12f838e1-3665-45ac-ba73-049e56fac825", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:39Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000492-0000000000001065-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fa0f83ed-da17-46be-9a7c-5507b8476606" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7e6f297-11b3-484a-8842-6a70d8c06d63", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:39Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000493-0000000000001067-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5bf10a7c-6afe-4e7b-b6de-a8791fb2e0a0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "02f491fb-08c0-49ca-bc34-4219920de65c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:39Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000494-0000000000001069-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bc005972-7199-4807-bf86-5266dd6bc5fa" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f2c89c0-d97a-4a25-9242-1d36a62267e7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:45Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000495-0000000000001071-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ebe93087-66fb-4d09-98ab-e7837d38eb95" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c993992-e835-4844-b385-61f9d91977ff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:45Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000496-0000000000001073-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "777d0ba9-ac3f-4b6e-870f-4e5f247123de" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab8ceaee-c12c-4040-b8c7-1ac6d400821e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:48Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:48.0256765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000497-0000000000001075-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ec35d880-1042-4173-8e3c-0aea89046560" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77e6c590-f8fb-4bc7-b2e9-50b41fd159c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:48Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:48.0256765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000498-0000000000001077-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3c07b07b-0702-46b6-a815-74dc423e1815" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0abd3cd8-61fd-41ed-b8b1-e2d9476d8dea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "638" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:53Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:53.2496638Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:48.0256765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000499-0000000000001079-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "929d6506-5b28-4d9f-a802-5def8b027d69" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9dcc7161-4ad7-4f46-bf84-829dd107a704", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "726" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:55Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:53.2496638Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:48.0256765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:55.2533507Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/73c7f303-311b-46df-81d5-ba69e1880a50?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000500-0000000000001081-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "08e03c13-3c04-4082-96bc-6d9514a5d644" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8048fe3-81bf-4770-bd22-8b447652532c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "452" + }, + "ResponseBody": { + "jobId": "73c7f303-311b-46df-81d5-ba69e1880a50", + "lastUpdateDateTime": "2022-02-18T19:06:55Z", + "createdDateTime": "2022-02-18T19:06:38Z", + "expirationDateTime": "2022-02-19T19:06:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:53.2496638Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:48.0256765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:55.2533507Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js deleted file mode 100644 index 8071505fefcf..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js +++ /dev/null @@ -1,290 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3762baf9b0060053b2d28b16ac486e17"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '56d26155-721c-45fa-8cbc-bd29e1f14d00', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AruFagcf9VFFhlmjW2-Gs80; expires=Mon, 22-Nov-2021 00:46:07 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrii-CmBXHHt4dq-lumy3zZXR0hNK0QS-X-E6a9OA90tfSuEiQkFoq0K36MR6jb_uzYjU6khzsoRA2JajnQeY2z9Zkw46XxS1zUQPqHhYKcTntZSs-hCZWTv1YLei0TtKpa5oiqlJI2g1yM-95Fz3yzRZS5-hIQNylJ7rjf9rMRuAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:07 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a4435e880200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AgPywWFxEbJKoQNwxLKySiI; expires=Mon, 22-Nov-2021 00:46:07 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXkjwIFRW2EuagS6-1Eo6cGDiKI_ENJ2p3MeoJqs8z0jbWxUneuiMcGNzEYs4qey0zkNHv5O0V5uSpFU_0VGSnkrJJKNkumYuzvl7nhBE1DFwuuZAUsiWwunuB7lqKYuXq_QYYugeyoElf9bNPCBsDYJZ_pwvOTsN6SsweuU7PkcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:07 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ec571ba6-f77e-4be4-81e2-d0ee87e7ab63&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f963d2d0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Am0iKFXEuY5FguWeNZT1tLI; expires=Mon, 22-Nov-2021 00:46:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:07 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0', - 'x-envoy-upstream-service-time', - '404', - 'apim-request-id', - '8900c8c4-09a3-443e-a934-65279889545f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:08Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'a5c8e06f-5692-434a-ad62-249501ac1299', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:08Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '40', - 'apim-request-id', - 'c61ed2da-32cb-46d6-a9df-e48c1c0dfabf', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:10Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:10.5023752Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '122', - 'apim-request-id', - '32aa06a0-6eb8-4a17-bfd7-781361b95324', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:10Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:10.5023752Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '89', - 'apim-request-id', - '17b23adc-3206-4556-bf0e-b11d9709b3f6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:14Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:10.5023752Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '116', - 'apim-request-id', - '76bc3475-48b0-4698-8764-b96643d52167', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:16Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:10.5023752Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:16.7947873Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '510', - 'apim-request-id', - 'a35a81a7-869d-4041-b1b9-db967ab0cb11', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:18Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:18.1467822Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:10.5023752Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:16.7947873Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '341', - 'apim-request-id', - '40aba638-7aa3-455d-95ce-17360f8725d5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0') - .query(true) - .reply(200, {"jobId":"c76da17f-5b0e-45fd-ba11-08bcf9cfd7a0","lastUpdateDateTime":"2021-10-23T00:46:18Z","createdDateTime":"2021-10-23T00:46:08Z","expirationDateTime":"2021-10-24T00:46:08Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:18.1467822Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:10.5023752Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:16.7947873Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '329', - 'apim-request-id', - 'f1de6c5b-d529-4dc6-b426-50adbe3554f2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:20 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json new file mode 100644 index 000000000000..d8ee3771fe8e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json @@ -0,0 +1,918 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "447", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000481-0000000000001042-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "07c2ae96-89c8-427e-ba36-e27276997176" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "07da9dcf-26b1-49b6-927b-8ae084dc6507", + "Date": "Fri, 18 Feb 2022 19:06:27 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "399" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000482-0000000000001044-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4e59c001-57a3-486b-b11e-3724bb061f64" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "82208325-55b4-4285-806d-6feff5604c79", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:28Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000483-0000000000001046-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a1cc7291-fec4-467d-ad57-1768465c9f02" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5aa81028-efd0-4356-871d-e257ca09ddba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:28Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000484-0000000000001048-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8cf6cab0-4424-4bfb-a524-295931865d2b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9a91ab43-c080-4003-bbe3-7faf2d749e51", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:28Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000485-0000000000001050-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "172e904d-8de7-4f0b-8d87-2549f32ef356" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b3e8ad3-6cb7-48eb-b9a7-7cb9120c8fd5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:31Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:30.7002433Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:31.7276063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000486-0000000000001052-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "678bce09-c7ec-4a95-9aed-dee8bd6286a2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b85d2d7-e191-4bc2-baeb-8e3d04adf4c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "225" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:31Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:30.7002433Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:31.7276063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000487-0000000000001054-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "42bf7f03-96b1-4eba-9ee6-8f2cd817ce6d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca65024d-79e5-4b09-a525-a6e877a1f1d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "282" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:37Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:30.7002433Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:31.7276063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:37.0311043Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8201359-3058-4133-9125-f38b1a127b56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000488-0000000000001056-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ee7d7679-a31a-4995-8567-47b9310869e4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "87d6ade1-5527-4cc5-ad8f-8089691c96a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "238" + }, + "ResponseBody": { + "jobId": "f8201359-3058-4133-9125-f38b1a127b56", + "lastUpdateDateTime": "2022-02-18T19:06:37Z", + "createdDateTime": "2022-02-18T19:06:27Z", + "expirationDateTime": "2022-02-19T19:06:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:30.7002433Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:31.7276063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:37.0311043Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js deleted file mode 100644 index 2ab0434b905a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js +++ /dev/null @@ -1,390 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "62c1fe15c62c95311d183654f7e1c9d9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '872facd8-87e1-48e5-99e7-6ec630168100', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ao4FbBkWOjpMjN9Z6np7W44; expires=Mon, 22-Nov-2021 00:47:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWN3IpHRtzBkQYnkBqGWi75dmBD2aAdzLV6XVXmpzw0vwzoPo_wOL6ANrM6aH2_6NEPhChu-SX97n1Gdi8BrhxQI4bk2oAW-1uu6jmkWq2NSPGdv5yc6hfo1ECzeObFR4uT4AFa6T28OqYfr0B9sFJIPVVyRTjwjf5A-cFJ0Tu4MgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:47 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443f78e0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AqfEoXNSkIJKisktpx06kOQ; expires=Mon, 22-Nov-2021 00:47:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJjH3MjJOnyY89Hga-j1z6ffmkJnGjtU9KGSCs6pHClmA5qdc3PnwqNP-M0DB8ImQ1aQC9M-yQs_21-vgrAR0zYXy37HeBrFpJ1OUIIU7FXZBjwnikrbmiz6cgihNFe0ZnY_EJVPRk-2tuLNcbD9dnmQWo-SJ2ygP4Ri49-yzbS4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:47 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4568c3b7-c9d3-4cf2-8310-c0019fe9b467&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e5aa90300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Au3OUw-1IilDqEMwsjKDaoY; expires=Mon, 22-Nov-2021 00:47:48 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:47 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"},{"id":"11","text":"random text","language":"en"},{"id":"12","text":"random text","language":"en"},{"id":"13","text":"random text","language":"en"},{"id":"14","text":"random text","language":"en"},{"id":"15","text":"random text","language":"en"},{"id":"16","text":"random text","language":"en"},{"id":"17","text":"random text","language":"en"},{"id":"18","text":"random text","language":"en"},{"id":"19","text":"random text","language":"en"},{"id":"20","text":"random text","language":"en"},{"id":"21","text":"random text","language":"en"},{"id":"22","text":"random text","language":"en"},{"id":"23","text":"random text","language":"en"},{"id":"24","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce', - 'x-envoy-upstream-service-time', - '744', - 'apim-request-id', - '65b0d5cc-86f6-4ba0-a413-3658e86d293e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8b58ff34-158f-48d6-ab23-4cc6cb15f21f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'a6d2922d-ced6-4cfb-b7a4-4eb454c82a66', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - 'cc5d0693-e2d0-4792-a617-f13e0eb1ab49', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '5938d3c5-ce2a-4890-be78-4db54aa837e9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '329a443f-0480-431d-a7e2-fe1c144a11eb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '30e0cb67-3f09-44db-9f7a-a96e32f7c969', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:47:49Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '5b92cfff-715e-4fa4-810e-b35efbc71c5c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:48:01Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:01.3093938Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '191', - 'apim-request-id', - '7e93c687-f983-4bca-ad47-9f80a34bb0e0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:48:02Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:01.3093938Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '317', - 'apim-request-id', - '2aad594e-3e1c-4aed-b424-0d7e35d7014c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:48:05Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:01.3093938Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:05.8963077Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]},{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '525', - 'apim-request-id', - 'dde37af3-c732-42e3-ab6a-eae2f74f4d07', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:48:05Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:01.3093938Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:05.8963077Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce?$skip=10&$top=10&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '525', - 'apim-request-id', - 'fae627cb-d521-405b-a433-79e943b209bd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:48:05Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:01.3093938Z","state":"succeeded","results":{"documents":[{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:05.8963077Z","state":"succeeded","results":{"documents":[{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '313', - 'apim-request-id', - 'ffcda7ae-0b7d-47de-b546-55f1ada0c907', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/75059557-b5dc-4298-bcd1-0b7b1a68a9ce') - .query(true) - .reply(200, {"jobId":"75059557-b5dc-4298-bcd1-0b7b1a68a9ce","lastUpdateDateTime":"2021-10-23T00:48:05Z","createdDateTime":"2021-10-23T00:47:48Z","expirationDateTime":"2021-10-24T00:47:48Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:01.3093938Z","state":"succeeded","results":{"documents":[{"id":"20","entities":[],"warnings":[]},{"id":"21","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"23","entities":[],"warnings":[]},{"id":"24","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:05.8963077Z","state":"succeeded","results":{"documents":[{"id":"20","keyPhrases":["random text"],"warnings":[]},{"id":"21","keyPhrases":["random text"],"warnings":[]},{"id":"22","keyPhrases":["random text"],"warnings":[]},{"id":"23","keyPhrases":["random text"],"warnings":[]},{"id":"24","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '421', - 'apim-request-id', - 'b3d41b90-737d-4f88-8379-1510f82c9b3e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:07 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json new file mode 100644 index 000000000000..afc196cb157c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json @@ -0,0 +1,1448 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "1471", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000534-0000000000001155-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "68b060d3-b12f-4302-bdd4-3d1a15b0022c" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + }, + { + "id": "11", + "text": "random text", + "language": "en" + }, + { + "id": "12", + "text": "random text", + "language": "en" + }, + { + "id": "13", + "text": "random text", + "language": "en" + }, + { + "id": "14", + "text": "random text", + "language": "en" + }, + { + "id": "15", + "text": "random text", + "language": "en" + }, + { + "id": "16", + "text": "random text", + "language": "en" + }, + { + "id": "17", + "text": "random text", + "language": "en" + }, + { + "id": "18", + "text": "random text", + "language": "en" + }, + { + "id": "19", + "text": "random text", + "language": "en" + }, + { + "id": "20", + "text": "random text", + "language": "en" + }, + { + "id": "21", + "text": "random text", + "language": "en" + }, + { + "id": "22", + "text": "random text", + "language": "en" + }, + { + "id": "23", + "text": "random text", + "language": "en" + }, + { + "id": "24", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "56c26ab6-33eb-440c-8ee5-fc6af3abb576", + "Date": "Fri, 18 Feb 2022 19:07:38 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "942" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000535-0000000000001157-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7746d8e3-f52d-4e3f-945f-afe7031b3751" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2cdf8044-2ee5-4c91-88fa-68c080cfab9c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:38Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000536-0000000000001159-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8638e5df-2b41-4bdc-b747-b58162292976" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59b44437-9a74-4bf2-ab0f-438a61e4b445", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:38Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000537-0000000000001161-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "393fc5a5-e97a-4519-b181-4477e666f511" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b5dadbb-333d-4cb0-b1db-bb8c85b2ec6e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:39Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000538-0000000000001163-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "597f64b9-55cc-451b-b17b-284be7afe031" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c643152-1964-461e-977b-5daf6f005f9f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:39Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000539-0000000000001165-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f249c071-2c95-4f87-9051-84afd89b3d07" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64df232e-0485-4a7b-a94a-346ac0c523d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "324" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:44Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:44.4210583Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + }, + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000540-0000000000001167-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "09a53e55-f1d1-49d3-8fc7-0f14e5ba32d2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc9cf235-0a1c-4341-bc8e-11d7b2800a05", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1292" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:46Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:44.4210583Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + }, + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000541-0000000000001169-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "268aa981-5f5f-4927-bf54-0e690476e083" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5de52980-7e41-4dcc-a9ed-615f31ddfa2f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "494" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:50Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:44.4210583Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + }, + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:50.5547735Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$top=10\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000542-0000000000001171-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e927a020-6475-44bf-bd42-5d10ddacc1e9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "918f4394-ccb8-4e57-822c-93ca7f099c89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "275" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:50Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:44.4210583Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:50.5547735Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=10\u0026$top=10\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=10\u0026$top=10\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000543-0000000000001173-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d835dcb6-0c28-43f8-80a9-77bb7dcdea98" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e742aad3-0a13-4917-9e68-04ec19a6e68a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "365" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:50Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:44.4210583Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:50.5547735Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/59b3bd29-cca6-491e-a0db-468d4f2c5a38?$skip=20\u0026$top=5\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000544-0000000000001175-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9ba535bb-4dc3-4b2b-bb97-3601c536cd24" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad89e7ba-7dd0-41b1-a0db-4d17fa848494", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1097" + }, + "ResponseBody": { + "jobId": "59b3bd29-cca6-491e-a0db-468d4f2c5a38", + "lastUpdateDateTime": "2022-02-18T19:07:50Z", + "createdDateTime": "2022-02-18T19:07:37Z", + "expirationDateTime": "2022-02-19T19:07:37Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:44.4210583Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "entities": [], + "warnings": [] + }, + { + "id": "21", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "23", + "entities": [], + "warnings": [] + }, + { + "id": "24", + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:50.5547735Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "21", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "23", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "24", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js deleted file mode 100644 index 158b3d61fff0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js +++ /dev/null @@ -1,270 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "782a96cbf88cb2448cd7eb594e95d410"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8fe149d3-688f-4d6f-804a-7b7637fd4b00', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Au_toXDs8VtMp4QYRIGcAoE; expires=Mon, 22-Nov-2021 00:48:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-Kk5nY60Y6Dx7W-d3gVxDozE6aYuS581aDhnf2lZ1uR-wIYkDyGMExaTPtS0iiIRNH5AE4qOWYDPGoKbFucHEcNVTKks2i94qYbfoLFunOBeByHerHVJls1p2TKlSe1FivntgY-SYxlmUL5yX6cqei_kDbv3dYcxi6JFzgv-ohUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:07 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1024ccba-f57a-42d9-af7e-ef23728e0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AmY5UXAiI_FEmJQd9fIH5N4; expires=Mon, 22-Nov-2021 00:48:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqakpCzqbmxQuw-B_mJHdDPcNB3GzqgOyAHe8igcG715az-CF867G30L08LqYhqRW0MTfca72N3WGX2hB7RyQgsM_d-XsVSRj_lU7Cl9YWAxW3QrF6XE9JXk0zaNKyWDQNSmCiVhsdgq0zolG4PLwZZUR9Vp1UF6y3DqXbismWa4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:07 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=8e266f22-5c32-42bf-ba07-fc0c712f337a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-958809420300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqGPgdXLwdROkIAELtZMIos; expires=Mon, 22-Nov-2021 00:48:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:07 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d', - 'x-envoy-upstream-service-time', - '317', - 'apim-request-id', - '67b30ab8-c8ac-4c80-857c-b62ca80245e9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:09Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '26f68b94-d497-4073-b6b0-d40e2076225a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:09Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '4bc1189f-1aa7-4f82-9c8b-c88dbf1ffc1a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:09Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '8b9f5786-3070-4f3b-beed-c5b3f83e8f27', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:09Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'b02b8544-71d5-4917-8490-231bdd726f98', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:09Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - 'fac810d0-cd55-4d47-86fd-57c14b9b2893', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:17Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:17.453231Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '86', - 'apim-request-id', - '87da8023-03da-4c81-bdd2-a7e73481bebb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/93f97087-ff1f-48f0-9b90-57a19f7f6f0d') - .query(true) - .reply(200, {"jobId":"93f97087-ff1f-48f0-9b90-57a19f7f6f0d","lastUpdateDateTime":"2021-10-23T00:48:17Z","createdDateTime":"2021-10-23T00:48:08Z","expirationDateTime":"2021-10-24T00:48:08Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:48:17.453231Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '205', - 'apim-request-id', - '48fe575f-bf61-408b-ab1a-fd41ab7b0c7d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:17 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json new file mode 100644 index 000000000000..243c817d60f5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json @@ -0,0 +1,423 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "286", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000545-0000000000001178-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f8f1c0f9-9abe-4435-b925-14e12ab57393" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a7f6c180-fdbd-4fdc-81f7-89cb8ae07cd2", + "Date": "Fri, 18 Feb 2022 19:07:54 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000546-0000000000001180-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "97ddb366-a2df-4685-bbd2-4bfee58de195" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b48877c-5440-4696-8bd1-dc8e5aa0f538", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:07:54Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000547-0000000000001182-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "73b7ce76-e3bc-4ab7-8b37-7a154e17e39d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "efa70e5d-dc1e-461a-a160-43d88092f572", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:07:54Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000548-0000000000001184-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b76215dc-45a6-4dab-8da7-daef29e902ee" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "606da516-c496-472b-a5ce-52682b141163", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:07:54Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000549-0000000000001186-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "287d585a-45cd-4096-82ec-86f207c9bc41" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa81629d-45e9-4f86-a462-3b8cd06fbafb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:07:54Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000550-0000000000001188-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "955f6bc9-a5e9-456a-aeed-4340f092cdd9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ee305ea2-1139-40cc-8a6e-6e059cb0ff30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:07:54Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000551-0000000000001190-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a8bc3411-5259-4c21-b487-4b9d8230e7fb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e575d0e3-d32f-4a34-8226-629d7599e003", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:08:03Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000552-0000000000001192-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4df53192-ee5b-43d6-b5bd-6620453af55b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6453a5ff-ec5a-4707-87ac-660955f7d046", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:08:03Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:08:03.2485303Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9340419e-1d70-4ef6-af23-18270be60693?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000553-0000000000001194-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e4a94991-5e63-41ad-80e8-a8e1dd9205c9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b2873bc-5bb8-4f11-93ab-a37151160776", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" + }, + "ResponseBody": { + "jobId": "9340419e-1d70-4ef6-af23-18270be60693", + "lastUpdateDateTime": "2022-02-18T19:08:03Z", + "createdDateTime": "2022-02-18T19:07:54Z", + "expirationDateTime": "2022-02-19T19:07:54Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:08:03.2485303Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.js deleted file mode 100644 index 3954371d8639..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.js +++ /dev/null @@ -1,210 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e625fabec349c46bd68f70745afca86b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '16196001-0337-4354-9ea1-3864ed184300', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ak645MuT_h1LvS5BrfTwE0c; expires=Mon, 22-Nov-2021 00:44:02 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6lRTrfCKdH_nOxmWs_ZOmGPrg_iPb3EWV7NOLLyiFK_hOClGG_Rv1xQ7ikUb_sBqA47mFvRi-4RU1xoOSr_2_dqKTMnGMCI6H0i2ijiQBbhDF02ZWe4DGGC8OOf-YeS-_--rZSxbg6M1kBaqYS-8Gg4_C5hkg4saUXJTuUgTDTwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:01 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '956061d5-661c-4b1c-b3b2-6a4762090e00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AtACCFgsbCVJra2xwx4Iobc; expires=Mon, 22-Nov-2021 00:44:02 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrj2G_DXLqSycYP6J1nSDvT4ZfYaw1TSf9dgPg_QMdNumK8JA6DhaZHi-dw7nU59pqfwfErc8PcXih6Dx7fP4xZCY8Lo_isvo_shLLTXEoEk6CohZoGe2tTte1oKWRcBWNFbIulk6109kJYkQ8VT4Y5Z71gRufBYnNRTin6g2xuHwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:02 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a6976f84-08e3-4224-9b34-b93066bbb2dc&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b388f0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ap7Yg6b26AJGiXx17S0ee8c; expires=Mon, 22-Nov-2021 00:44:02 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:02 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","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.","language":"en"}]},"tasks":{"customMultiClassificationTasks":[{"parameters":{"project-name":"project_name","deployment-name":"deployment_name"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa', - 'x-envoy-upstream-service-time', - '408', - 'apim-request-id', - '0fd461e3-073d-4e43-b7e6-2e60c157a15e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa') - .query(true) - .reply(200, {"jobId":"7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa","lastUpdateDateTime":"2021-10-23T00:44:03Z","createdDateTime":"2021-10-23T00:44:02Z","expirationDateTime":"2021-10-24T00:44:02Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '18f1c7bf-c8c4-48ec-a49f-ebcacc28e402', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa') - .query(true) - .reply(200, {"jobId":"7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa","lastUpdateDateTime":"2021-10-23T00:44:03Z","createdDateTime":"2021-10-23T00:44:02Z","expirationDateTime":"2021-10-24T00:44:02Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - '351f11b4-c6e4-462c-807f-379b249ff0b9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa') - .query(true) - .reply(200, {"jobId":"7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa","lastUpdateDateTime":"2021-10-23T00:44:04Z","createdDateTime":"2021-10-23T00:44:02Z","expirationDateTime":"2021-10-24T00:44:02Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customMultiClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:04.4505551Z","state":"succeeded","results":{"documents":[{"id":"1","classifications":[],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '103', - 'apim-request-id', - 'e08787b5-a417-4776-8f7b-c6fe55b541d9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa') - .query(true) - .reply(200, {"jobId":"7c6210c9-1c59-4a6e-bfc0-054d98f1f4fa","lastUpdateDateTime":"2021-10-23T00:44:04Z","createdDateTime":"2021-10-23T00:44:02Z","expirationDateTime":"2021-10-24T00:44:02Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customMultiClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:04.4505551Z","state":"succeeded","results":{"documents":[{"id":"1","classifications":[],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '86', - 'apim-request-id', - '60a4afb1-c2e5-4de3-b82a-4f337674fe3d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json new file mode 100644 index 000000000000..bd3a8bff3fa0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json @@ -0,0 +1,235 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "484", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "538ae6e4-7a83-4a7f-8f1c-fe8144c6b108" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1a68b9e0-ffea-4d6e-9136-e3487e246a69", + "Date": "Fri, 18 Feb 2022 19:31:35 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2bf5762-feee-46b2-9ca1-24b47a99e5f9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "197" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2bf5762-feee-46b2-9ca1-24b47a99e5f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "360a1558-0f41-4ece-840d-ee6588cd5f04" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0a50c85-78fc-4bc0-8022-0a6826207d27", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "b2bf5762-feee-46b2-9ca1-24b47a99e5f9", + "lastUpdateDateTime": "2022-02-18T19:31:35Z", + "createdDateTime": "2022-02-18T19:31:35Z", + "expirationDateTime": "2022-02-19T19:31:35Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2bf5762-feee-46b2-9ca1-24b47a99e5f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0bcbfefb-cbd7-49ac-8134-5d255a0b41ea" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5c8a7a66-6b29-4eaf-9c54-1f68506e6fc7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "b2bf5762-feee-46b2-9ca1-24b47a99e5f9", + "lastUpdateDateTime": "2022-02-18T19:31:35Z", + "createdDateTime": "2022-02-18T19:31:35Z", + "expirationDateTime": "2022-02-19T19:31:35Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2bf5762-feee-46b2-9ca1-24b47a99e5f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "088fbf41-3fd6-4318-bd1c-8b9b4c7e3555" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b7671c4-9bab-45b7-bbc9-94e79e1557a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "jobId": "b2bf5762-feee-46b2-9ca1-24b47a99e5f9", + "lastUpdateDateTime": "2022-02-18T19:31:35Z", + "createdDateTime": "2022-02-18T19:31:35Z", + "expirationDateTime": "2022-02-19T19:31:35Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:35.7448363Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b2bf5762-feee-46b2-9ca1-24b47a99e5f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b1464968-5ea1-46d7-8d7d-9943f5aebb13" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c60e596-edf6-4205-a376-bf193b8dbfab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "b2bf5762-feee-46b2-9ca1-24b47a99e5f9", + "lastUpdateDateTime": "2022-02-18T19:31:35Z", + "createdDateTime": "2022-02-18T19:31:35Z", + "expirationDateTime": "2022-02-19T19:31:35Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:35.7448363Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.js deleted file mode 100644 index a4c89cafa4d3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.js +++ /dev/null @@ -1,210 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "20e51d103d3129d724daa3fee868df01"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '5c2bdc1b-622e-4dcc-aa5d-622d7d1f5b00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ah9jqCfHw7RFlcyttXTGVzc; expires=Mon, 22-Nov-2021 00:43:58 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7O9ai489NZJekXFhJ4G8Rq3vEt36dEoj5zIO60HLhsMaZBZN3DsmPY_JRIVfJmbzxtLCqTATXVHmTQNrZE-jgccazZcvrvbeQ1KPFxdJx1lHLVFlt270df5_LKV3ePPOlh2irhvs7jni0lEWgCsFAU1b8f6z7_d3IdK8CUn21msgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:58 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bd5000d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Aq-sa3nrFu9Es_7RGePp470; expires=Mon, 22-Nov-2021 00:43:59 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGYrmrUZAsMzC4TExCOfa-HpLgL0JohU2LZaN9sOlax9r8nPGcOsvbMqagyqEvLaKZItbjEXCLvlxYgYwdJHoDPhDCNqQ69eiTixZC9xmKVVd3hnI5Edi4mif6Ss0rRFJwCooJ0mFvfEaHO-LznxUjeMmzUKSBYyvGC__hUjjXVYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:58 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=564d7a7b-d6ec-48d7-b1b2-cf1ca25ecd79&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15bce8e0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqRc0Zu02h5Noq0PCKLSXcU; expires=Mon, 22-Nov-2021 00:43:59 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:58 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","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.","language":"en"}]},"tasks":{"customSingleClassificationTasks":[{"parameters":{"project-name":"project_name","deployment-name":"deployment_name"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c', - 'x-envoy-upstream-service-time', - '597', - 'apim-request-id', - 'b18e0b76-3299-45e4-96a0-71c7ed996084', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c') - .query(true) - .reply(200, {"jobId":"56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c","lastUpdateDateTime":"2021-10-23T00:43:59Z","createdDateTime":"2021-10-23T00:43:59Z","expirationDateTime":"2021-10-24T00:43:59Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '53e3e299-8af2-44ea-b078-afa064ef0525', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c') - .query(true) - .reply(200, {"jobId":"56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c","lastUpdateDateTime":"2021-10-23T00:43:59Z","createdDateTime":"2021-10-23T00:43:59Z","expirationDateTime":"2021-10-24T00:43:59Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '58', - 'apim-request-id', - '5d4166bb-06d8-4bde-a3cf-dd678d98c28d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c') - .query(true) - .reply(200, {"jobId":"56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c","lastUpdateDateTime":"2021-10-23T00:44:01Z","createdDateTime":"2021-10-23T00:43:59Z","expirationDateTime":"2021-10-24T00:43:59Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customSingleClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:01.1040391Z","state":"succeeded","results":{"documents":[{"id":"1","classification":{"category":"RateBook","confidenceScore":0.76},"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '68', - 'apim-request-id', - 'ed79dd9d-66a5-4735-8e0c-112efc67cedb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c') - .query(true) - .reply(200, {"jobId":"56c2c115-3fd6-4bb0-8a7d-cbbe21526d8c","lastUpdateDateTime":"2021-10-23T00:44:01Z","createdDateTime":"2021-10-23T00:43:59Z","expirationDateTime":"2021-10-24T00:43:59Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customSingleClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:01.1040391Z","state":"succeeded","results":{"documents":[{"id":"1","classification":{"category":"RateBook","confidenceScore":0.76},"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '70', - 'apim-request-id', - '6639b42a-f905-4b14-bc7d-82837bcbf50f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:02 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json new file mode 100644 index 000000000000..854cccafeb00 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json @@ -0,0 +1,315 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "485", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "604253c9-c78a-4184-96c8-d339f12af3cb" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "eeafb9dd-ec08-405f-be67-f3d3f7ce5f54", + "Date": "Fri, 18 Feb 2022 19:31:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "447" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b98f2100-0b72-4bca-9ede-2d8d9483cb15" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "901e11f3-22ab-4d30-8325-a18e92726d59", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "1f0a7548-71cd-484c-bc01-dda2af3b0186", + "lastUpdateDateTime": "2022-02-18T19:31:27Z", + "createdDateTime": "2022-02-18T19:31:27Z", + "expirationDateTime": "2022-02-19T19:31:27Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fcdaf38d-03da-4504-9d53-4ad9c7a6302a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "163f4446-a9fb-450e-aa74-cf92aff2ea75", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "jobId": "1f0a7548-71cd-484c-bc01-dda2af3b0186", + "lastUpdateDateTime": "2022-02-18T19:31:27Z", + "createdDateTime": "2022-02-18T19:31:27Z", + "expirationDateTime": "2022-02-19T19:31:27Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "aa53e474-dc94-49e5-8067-51bd3f328765" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13b4d7e2-ac4e-4141-82c7-1a04207d8517", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1f0a7548-71cd-484c-bc01-dda2af3b0186", + "lastUpdateDateTime": "2022-02-18T19:31:27Z", + "createdDateTime": "2022-02-18T19:31:27Z", + "expirationDateTime": "2022-02-19T19:31:27Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "96672c07-014f-4cc5-bdd7-fa9b55314588" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d10da64d-3e0c-4c43-9777-4456166241b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "1f0a7548-71cd-484c-bc01-dda2af3b0186", + "lastUpdateDateTime": "2022-02-18T19:31:27Z", + "createdDateTime": "2022-02-18T19:31:27Z", + "expirationDateTime": "2022-02-19T19:31:27Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "df338a35-06d5-472e-b461-d9b98e51e077" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18cf8e59-5a6f-4aba-8a20-7da4a37b99f5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "1f0a7548-71cd-484c-bc01-dda2af3b0186", + "lastUpdateDateTime": "2022-02-18T19:31:33Z", + "createdDateTime": "2022-02-18T19:31:27Z", + "expirationDateTime": "2022-02-19T19:31:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:33.8926088Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0a7548-71cd-484c-bc01-dda2af3b0186?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "99bfeb79-517f-474b-b2de-7644aecda37e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5374c02e-9e96-4809-ac1a-2b396d108daa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "1f0a7548-71cd-484c-bc01-dda2af3b0186", + "lastUpdateDateTime": "2022-02-18T19:31:33Z", + "createdDateTime": "2022-02-18T19:31:27Z", + "expirationDateTime": "2022-02-19T19:31:27Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:33.8926088Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.js deleted file mode 100644 index d8050b087a44..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.js +++ /dev/null @@ -1,210 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7912107dd789728b7425c517733f2253"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'cb4cf183-d92b-466d-a0c9-5968cea39400', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ag9SEqoZfvhMlue3QF9x-vw; expires=Mon, 22-Nov-2021 00:43:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvWBC6QqNLCrC-LdG2brjFkDOV9vgkJu5KYOeScxLST5dCYvRtUflyZu9TWvUCi87fMn_CjxqQ_nCYqYSCd0f8P2BqT026M-HaZPJdFcWxzKh_67oADT7z_V6beLgweXZVOIEIUSFx10_jDm9ioLJLVNo7elx-HfiewsuIMmNPZIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406925ca0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkTX5KrwmYxNucVDSF0Co3M; expires=Mon, 22-Nov-2021 00:43:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9TFT6DK6UW4Oruffo_5lcC1Y50-t2z23imNfv6p7slok1joQuu0DyGf33L8k-VAcr8p1hXY7muZKpKywdmxDEyvHikJ_EzGf1tleWln7X7TtP7nMQNJZimyHB7cVroVCbkpJ_4oi9YsPcRtlHkWvUC69QCdvpg-Dgyu0b7rZFj4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:54 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=defbc2f5-4f5f-4af0-bb30-9948a7f8a2fb&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-40692eca0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AihpKQQMtndBvn9Z6WFVVsk; expires=Mon, 22-Nov-2021 00:43:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:43:55 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","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.","language":"en"}]},"tasks":{"customEntityRecognitionTasks":[{"parameters":{"project-name":"project_name","deployment-name":"deployment_name","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1f0acf98-2fce-4150-9a1e-65ef0ce5cb80', - 'x-envoy-upstream-service-time', - '682', - 'apim-request-id', - 'f8b6507a-5c3a-4d10-ad2e-657028f43f8d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1f0acf98-2fce-4150-9a1e-65ef0ce5cb80') - .query(true) - .reply(200, {"jobId":"1f0acf98-2fce-4150-9a1e-65ef0ce5cb80","lastUpdateDateTime":"2021-10-23T00:43:56Z","createdDateTime":"2021-10-23T00:43:56Z","expirationDateTime":"2021-10-24T00:43:56Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '74', - 'apim-request-id', - '06ab4ffd-0661-4af2-a3c7-f25cca466993', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1f0acf98-2fce-4150-9a1e-65ef0ce5cb80') - .query(true) - .reply(200, {"jobId":"1f0acf98-2fce-4150-9a1e-65ef0ce5cb80","lastUpdateDateTime":"2021-10-23T00:43:56Z","createdDateTime":"2021-10-23T00:43:56Z","expirationDateTime":"2021-10-24T00:43:56Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '21767947-30a8-40ce-ad5b-1c4f09188348', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1f0acf98-2fce-4150-9a1e-65ef0ce5cb80') - .query(true) - .reply(200, {"jobId":"1f0acf98-2fce-4150-9a1e-65ef0ce5cb80","lastUpdateDateTime":"2021-10-23T00:43:57Z","createdDateTime":"2021-10-23T00:43:56Z","expirationDateTime":"2021-10-24T00:43:56Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customEntityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:43:57.7714953Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"98-0987","category":"timeRange","offset":4,"length":7,"confidenceScore":0.55},{"text":"$100","category":"timeRange","offset":27,"length":4,"confidenceScore":0.15},{"text":"John owes","category":"artist","offset":12,"length":9,"confidenceScore":0.18},{"text":"Mike","category":"artist","offset":22,"length":4,"confidenceScore":0.35}],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '99', - 'apim-request-id', - '138c44f5-ca61-4e5f-881c-c78778a479a8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/1f0acf98-2fce-4150-9a1e-65ef0ce5cb80') - .query(true) - .reply(200, {"jobId":"1f0acf98-2fce-4150-9a1e-65ef0ce5cb80","lastUpdateDateTime":"2021-10-23T00:43:57Z","createdDateTime":"2021-10-23T00:43:56Z","expirationDateTime":"2021-10-24T00:43:56Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customEntityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:43:57.7714953Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"98-0987","category":"timeRange","offset":4,"length":7,"confidenceScore":0.55},{"text":"$100","category":"timeRange","offset":27,"length":4,"confidenceScore":0.15},{"text":"John owes","category":"artist","offset":12,"length":9,"confidenceScore":0.18},{"text":"Mike","category":"artist","offset":22,"length":4,"confidenceScore":0.35}],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '59', - 'apim-request-id', - '43a38144-a8b6-4f8c-b194-c1ad19d3ede0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:58 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json new file mode 100644 index 000000000000..d4422283beea --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json @@ -0,0 +1,425 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "516", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c31373c4-dfc3-4411-8912-954a8bb53631" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "44ff24ff-71b9-46b0-83d7-12c5ddb15f3e", + "Date": "Fri, 18 Feb 2022 19:31:24 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5b5c7499-a241-420c-9778-3e17ca96ff57", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "265" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5b5c7499-a241-420c-9778-3e17ca96ff57?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f40e4346-9864-4674-a76f-586ac3f46409" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94d32916-220d-42ae-9153-0aaaa39396d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "5b5c7499-a241-420c-9778-3e17ca96ff57", + "lastUpdateDateTime": "2022-02-18T19:31:25Z", + "createdDateTime": "2022-02-18T19:31:25Z", + "expirationDateTime": "2022-02-19T19:31:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5b5c7499-a241-420c-9778-3e17ca96ff57?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5a388d54-6dee-423f-870f-b410c4312060" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8953183-3007-4414-8282-70e4c1437bd5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "234" + }, + "ResponseBody": { + "jobId": "5b5c7499-a241-420c-9778-3e17ca96ff57", + "lastUpdateDateTime": "2022-02-18T19:31:25Z", + "createdDateTime": "2022-02-18T19:31:25Z", + "expirationDateTime": "2022-02-19T19:31:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:25.8249772Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5b5c7499-a241-420c-9778-3e17ca96ff57?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f1994a46-10e1-46a9-b5fb-4897e184ad19" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3fa7ba3f-9e1e-49ad-a09b-102f149f89a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "5b5c7499-a241-420c-9778-3e17ca96ff57", + "lastUpdateDateTime": "2022-02-18T19:31:25Z", + "createdDateTime": "2022-02-18T19:31:25Z", + "expirationDateTime": "2022-02-19T19:31:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:25.8249772Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js deleted file mode 100644 index 32f4d155fc7d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js +++ /dev/null @@ -1,330 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "08a944137d225f375d8a40947850adab"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7b6b5289-478b-48a9-9ec4-6a9b953ae400', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AomTR5DB57BEj3JRqCi4aRA; expires=Mon, 22-Nov-2021 00:44:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrkGId3337W9Es75yFoInDdV2N7kQbtWm-UoESO4rsokXe-SB2H_eOdD2LBTfxQ72YwLTT5sVD9ssWIHIg_o-jkT7n08TuFL3Q15qDCbl4r1M_hYVe91rQhxEDBPtCcG8sfnfVptsXXcD5GPEn88r1r_GRr5xfYvLRBKBkjEPxCZ8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '9418a971-639d-4ab7-bc0b-6fb45c200300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ar2QmTKz2S1ErDjYgirn9Sc; expires=Mon, 22-Nov-2021 00:44:52 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryEO85P1Fxjo2ScQ9EHCb2p24tBL1oKnIGxv_Sda3En_UIT6i51K_WnimnNiFQYMOFtRFjUSDPpVYukb8yG99DXDa_WthcFAYqjKK0qdy4FQjQq34i7blo15eFcsQSu_kfIlGqVx_q9uo5kgNPGXcQ3RjBAGYcNuIdXtmYto7s8AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=18ec6272-7cb5-4a5e-a8ad-a7916d5327d1&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bda060d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ait-4YI7bHBGiaWBBb15dV4; expires=Mon, 22-Nov-2021 00:44:53 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"Microsoft moved its headquarters to Bellevue, Washington in January 1979.","language":"en"},{"id":"1","text":"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.","language":"en"}]},"tasks":{"entityLinkingTasks":[{"parameters":{"stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a', - 'x-envoy-upstream-service-time', - '191', - 'apim-request-id', - 'd237af4d-3e3b-4249-877b-ee5a57ffbe4f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '9acf86ff-1390-42da-b832-d12830c71454', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'be8ba491-2337-4bec-bd2f-e0f4f0db96b8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '6236e9a2-ecfd-4c71-b6a5-5f31a4262070', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'c3d9aa69-5168-4853-8143-9a09f9a1d1d4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:56 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '5d0f62b5-7fee-4dd7-b256-5e2abf1e524e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'f9d268dd-0670-429d-bdd8-fd67ed61936f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '42750cfd-db2d-4a30-8b48-dc0a7e44a2ee', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:44:53Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'd6dea7a3-d6f4-411d-a208-842079c8940c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:45:07Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:07.1478612Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0","name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"bingId":"19fb6fb4-3c50-f314-30e4-7b5470e08274","name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"56ff0719-4791-406b-99de-0e99c3e8cefc","name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"bingId":"cf5db860-9fd2-390d-0b6d-5ba856efed49","name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"},{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"e23e51ed-d16f-4800-9a31-ed056168b9a2","name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '119', - 'apim-request-id', - '5c1e7fbd-36fa-4cd7-9bc0-d71195eb533b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dbd6ebd8-018f-4933-ada6-8cca36b6388a') - .query(true) - .reply(200, {"jobId":"dbd6ebd8-018f-4933-ada6-8cca36b6388a","lastUpdateDateTime":"2021-10-23T00:45:07Z","createdDateTime":"2021-10-23T00:44:53Z","expirationDateTime":"2021-10-24T00:44:53Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:07.1478612Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0","name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"bingId":"19fb6fb4-3c50-f314-30e4-7b5470e08274","name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"56ff0719-4791-406b-99de-0e99c3e8cefc","name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"bingId":"cf5db860-9fd2-390d-0b6d-5ba856efed49","name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"},{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"e23e51ed-d16f-4800-9a31-ed056168b9a2","name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '124', - 'apim-request-id', - 'b116da87-0bed-4702-967a-5b3afdbdd935', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:07 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json new file mode 100644 index 000000000000..1ce2e8a2e8c4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json @@ -0,0 +1,518 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "346", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000442-0000000000000957-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "db125561-80c4-43b2-8271-a3a700fab692" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft moved its headquarters to Bellevue, Washington in January 1979.", + "language": "en" + }, + { + "id": "1", + "text": "Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.", + "language": "en" + } + ] + }, + "tasks": { + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e66ba613-3aa5-4935-af21-e3d0b52758c4", + "Date": "Fri, 18 Feb 2022 19:05:43 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/43d7464c-b018-4dba-9707-ac23438de7af", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1523" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/43d7464c-b018-4dba-9707-ac23438de7af?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000443-0000000000000959-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "eeecc9e5-1810-4bc4-a210-479b2afc2de1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ed93f0a-1c4b-4d20-bf08-22fd7069b7c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "jobId": "43d7464c-b018-4dba-9707-ac23438de7af", + "lastUpdateDateTime": "2022-02-18T19:05:43Z", + "createdDateTime": "2022-02-18T19:05:42Z", + "expirationDateTime": "2022-02-19T19:05:42Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/43d7464c-b018-4dba-9707-ac23438de7af?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000444-0000000000000961-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d9aad5d6-bca6-4570-b5fb-c40d9cfce454" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47a52a1d-1a61-4b2e-8545-6380df83c824", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "43d7464c-b018-4dba-9707-ac23438de7af", + "lastUpdateDateTime": "2022-02-18T19:05:43Z", + "createdDateTime": "2022-02-18T19:05:42Z", + "expirationDateTime": "2022-02-19T19:05:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/43d7464c-b018-4dba-9707-ac23438de7af?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000445-0000000000000963-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "516f1fe8-3479-4ac8-aa8b-dedd0e679450" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13b32404-06ff-4f99-8d83-0cbc77c7905d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "jobId": "43d7464c-b018-4dba-9707-ac23438de7af", + "lastUpdateDateTime": "2022-02-18T19:05:43Z", + "createdDateTime": "2022-02-18T19:05:42Z", + "expirationDateTime": "2022-02-19T19:05:42Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/43d7464c-b018-4dba-9707-ac23438de7af?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000446-0000000000000965-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3ada4c60-b6d2-4dc4-9368-9f5ec4868271" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a0d68255-48e7-4b5b-9a51-a6b8ea49107a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" + }, + "ResponseBody": { + "jobId": "43d7464c-b018-4dba-9707-ac23438de7af", + "lastUpdateDateTime": "2022-02-18T19:05:47Z", + "createdDateTime": "2022-02-18T19:05:42Z", + "expirationDateTime": "2022-02-19T19:05:42Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:47.6580525Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/43d7464c-b018-4dba-9707-ac23438de7af?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000447-0000000000000967-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b6d57973-0559-4dbe-8908-d5544b11d4f4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "251564f2-7a46-4949-aa48-51b118371794", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "43d7464c-b018-4dba-9707-ac23438de7af", + "lastUpdateDateTime": "2022-02-18T19:05:47Z", + "createdDateTime": "2022-02-18T19:05:42Z", + "expirationDateTime": "2022-02-19T19:05:42Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:47.6580525Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js deleted file mode 100644 index 7e6d3bde397a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js +++ /dev/null @@ -1,230 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1d7e68c14bcd1159d86b5328ac426b14"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b0493479-d4e2-4dc7-826d-a0117786c700', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=As5s5EJ50AVAt9Bt3b8gHI8; expires=Mon, 22-Nov-2021 00:44:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHFMjgkQbWkk0kk4sZ8ToSyWnfO_zwc-2y3NqsFubfR6eGHJUjza41UVAi0KAll3udrrLTEKOMj9bwMBEP9yhhVsnKgnH9FbK6FysJUd4YB_eEaO9lm63g1DR968BQRGsrSzm-NE01jEs4PRiqLzrgfIkTiqy_bfmr1rpf8356VggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b54060d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ArNRVdUX879EpXHBU7_3DBE; expires=Mon, 22-Nov-2021 00:44:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJPqeNH2a5M-zoPCoKPOLCFVzooImY5KKfBtNXHqum_MuhzGvaVH7GV-1bMJjeVjReq50lZQau2csptLROKlrcCH3tsS9VN4FnIIPzXvj1EWi8mVpap2fnYrD8nh7BuW17Dm_yeuZV3iV7BxWFpaaynJbs86q8x2x3vfH9ndEzYsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=2267fb56-f251-4442-8040-e276666b3c64&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-9588442f0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AvB7pl6vT2hNlMkCd7R2saY; expires=Mon, 22-Nov-2021 00:44:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.","language":"es"},{"id":"3","text":"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.","language":"de"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8702480-28ea-449c-8663-757e39379357', - 'x-envoy-upstream-service-time', - '211', - 'apim-request-id', - '00b4ed59-ef57-4307-b416-1a8d14bdab0a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8702480-28ea-449c-8663-757e39379357') - .query(true) - .reply(200, {"jobId":"f8702480-28ea-449c-8663-757e39379357","lastUpdateDateTime":"2021-10-23T00:44:48Z","createdDateTime":"2021-10-23T00:44:48Z","expirationDateTime":"2021-10-24T00:44:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '16bed471-3135-4b7d-bc33-2de674f7103c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8702480-28ea-449c-8663-757e39379357') - .query(true) - .reply(200, {"jobId":"f8702480-28ea-449c-8663-757e39379357","lastUpdateDateTime":"2021-10-23T00:44:48Z","createdDateTime":"2021-10-23T00:44:48Z","expirationDateTime":"2021-10-24T00:44:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '2fa5a95f-64e6-4205-ba07-fd676fff4c6d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8702480-28ea-449c-8663-757e39379357') - .query(true) - .reply(200, {"jobId":"f8702480-28ea-449c-8663-757e39379357","lastUpdateDateTime":"2021-10-23T00:44:48Z","createdDateTime":"2021-10-23T00:44:48Z","expirationDateTime":"2021-10-24T00:44:48Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'c578c6d5-30b0-4a6e-8c9f-d8575a2344e0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8702480-28ea-449c-8663-757e39379357') - .query(true) - .reply(200, {"jobId":"f8702480-28ea-449c-8663-757e39379357","lastUpdateDateTime":"2021-10-23T00:44:51Z","createdDateTime":"2021-10-23T00:44:48Z","expirationDateTime":"2021-10-24T00:44:48Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:51.0984064Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '138', - 'apim-request-id', - '366bbd1b-df30-4607-8fa8-735aa6592c9b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8702480-28ea-449c-8663-757e39379357') - .query(true) - .reply(200, {"jobId":"f8702480-28ea-449c-8663-757e39379357","lastUpdateDateTime":"2021-10-23T00:44:51Z","createdDateTime":"2021-10-23T00:44:48Z","expirationDateTime":"2021-10-24T00:44:48Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:51.0984064Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '81', - 'apim-request-id', - 'b9c0114f-5c97-4efa-b803-da33f7b61ba5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:52 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json new file mode 100644 index 000000000000..6f0984338a3c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json @@ -0,0 +1,448 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "471", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000437-0000000000000946-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5f6d32dd-9fbf-4215-b310-13a8200fcfbe" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.", + "language": "es" + }, + { + "id": "3", + "text": "Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegr\u00FCndet.", + "language": "de" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1b4861b9-1335-416e-b47b-8accbabf2127", + "Date": "Fri, 18 Feb 2022 19:05:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef434bdf-33d8-4187-8a08-7a20e1880752", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "205" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef434bdf-33d8-4187-8a08-7a20e1880752?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000438-0000000000000948-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5273862e-423a-4ad0-b4b5-8a1b15983ccd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f885ade0-4233-40b7-b1f6-fe53bd698ad9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "ef434bdf-33d8-4187-8a08-7a20e1880752", + "lastUpdateDateTime": "2022-02-18T19:05:38Z", + "createdDateTime": "2022-02-18T19:05:38Z", + "expirationDateTime": "2022-02-19T19:05:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef434bdf-33d8-4187-8a08-7a20e1880752?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000439-0000000000000950-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "27a3e0b1-446c-4f90-b90c-6e5914f9f2cf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f5e18c08-51ab-4e6c-8409-ceeb0306323e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "ef434bdf-33d8-4187-8a08-7a20e1880752", + "lastUpdateDateTime": "2022-02-18T19:05:38Z", + "createdDateTime": "2022-02-18T19:05:38Z", + "expirationDateTime": "2022-02-19T19:05:38Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef434bdf-33d8-4187-8a08-7a20e1880752?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000440-0000000000000952-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c96266e2-41de-4476-b6ca-679954124fe2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c050b0d5-d0aa-4745-af79-fe687837f37a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "507" + }, + "ResponseBody": { + "jobId": "ef434bdf-33d8-4187-8a08-7a20e1880752", + "lastUpdateDateTime": "2022-02-18T19:05:40Z", + "createdDateTime": "2022-02-18T19:05:38Z", + "expirationDateTime": "2022-02-19T19:05:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:40.0935303Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef434bdf-33d8-4187-8a08-7a20e1880752?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000441-0000000000000954-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "50ad2f76-a684-4f7d-a041-cb6f78de1f9c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3bb3b6dd-d981-4f0f-b9d2-ea9f7a7d7128", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "jobId": "ef434bdf-33d8-4187-8a08-7a20e1880752", + "lastUpdateDateTime": "2022-02-18T19:05:40Z", + "createdDateTime": "2022-02-18T19:05:38Z", + "expirationDateTime": "2022-02-19T19:05:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:40.0935303Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js deleted file mode 100644 index 228c3d33432e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js +++ /dev/null @@ -1,210 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cbf03ddee2860872f977286316a65b6f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '098749c4-bbe5-4c83-bc8f-1989000f5100', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AvBO7xy6Z4FKmMsWSR4-zQ4; expires=Mon, 22-Nov-2021 00:44:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEMnVaSGjXQdyHIUQ1mNC8fFYhxjMEG-pfq4eaRN2DkSPgC57qSGLsJQQypxZJ81eX9UdjqjbN2WQoFQReaVLmY_4p1GgL38gvVu07U2KyHQ1oHDhBXkyZlu4k0ObL3L3conlejRzkn-1k01A5gW9M3MxWf8Td-8ZYz5_VZ4fs50gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:24 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-8200adfb0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Am-Mm_6Jfx1Hj39JLlNDmcU; expires=Mon, 22-Nov-2021 00:44:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEGJl4jMI_GL9dwDh4fmBSO0BOYrCLrzNXfKjMNQEHkOmM_r6MecU7rmnxttIq0d-uKaHAdci_D3QqwESjtikVyfMNR5eKxjo9okN3y7umfw_x1TNteEiOjiKPrQDOF5222rwluxw_kkTLcDcwHKVsITe8LPh64vY4KrUQ3Oxbn4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:24 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=dc96a29b-7e5a-4c55-a746-761433b4f116&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-8200b7fb0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsQHyC0DBX5KlVrVhAOrJ-g; expires=Mon, 22-Nov-2021 00:44:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:24 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e6f89d77-bc70-470a-87d9-26e08e05d204', - 'x-envoy-upstream-service-time', - '310', - 'apim-request-id', - 'a563943e-3889-4e4f-bbd7-1f9f3d8228e2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/e6f89d77-bc70-470a-87d9-26e08e05d204') - .query(true) - .reply(200, {"jobId":"e6f89d77-bc70-470a-87d9-26e08e05d204","lastUpdateDateTime":"2021-10-23T00:44:25Z","createdDateTime":"2021-10-23T00:44:25Z","expirationDateTime":"2021-10-24T00:44:25Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'ba5c3389-99b2-496b-a375-29d32e6ad3b6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/e6f89d77-bc70-470a-87d9-26e08e05d204') - .query(true) - .reply(200, {"jobId":"e6f89d77-bc70-470a-87d9-26e08e05d204","lastUpdateDateTime":"2021-10-23T00:44:25Z","createdDateTime":"2021-10-23T00:44:25Z","expirationDateTime":"2021-10-24T00:44:25Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'c5992d99-4e1e-48fc-af2e-49e88076c39d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/e6f89d77-bc70-470a-87d9-26e08e05d204') - .query(true) - .reply(200, {"jobId":"e6f89d77-bc70-470a-87d9-26e08e05d204","lastUpdateDateTime":"2021-10-23T00:44:27Z","createdDateTime":"2021-10-23T00:44:25Z","expirationDateTime":"2021-10-24T00:44:25Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:27.6776127Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '165', - 'apim-request-id', - 'ddadf0b6-f222-4f3f-b73c-b8b855f958c4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:27 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/e6f89d77-bc70-470a-87d9-26e08e05d204') - .query(true) - .reply(200, {"jobId":"e6f89d77-bc70-470a-87d9-26e08e05d204","lastUpdateDateTime":"2021-10-23T00:44:27Z","createdDateTime":"2021-10-23T00:44:25Z","expirationDateTime":"2021-10-24T00:44:25Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:27.6776127Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '80', - 'apim-request-id', - 'b679b974-667e-43de-a0cd-7c7202f57e77', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:27 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json new file mode 100644 index 000000000000..57eb7dcacc66 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json @@ -0,0 +1,379 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "319", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000425-0000000000000920-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e44c8554-b196-404e-973e-4414ada6395d" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "fd40da04-5356-4f94-85b8-e445750dedf6", + "Date": "Fri, 18 Feb 2022 19:05:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/adceb679-9ccc-4436-a8d7-307fb790ad42", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/adceb679-9ccc-4436-a8d7-307fb790ad42?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000426-0000000000000922-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a67c7800-efc7-42dc-8d25-1a6da8bc9bc3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4c1aaca-f2df-4e55-a7e2-15d5dd611de8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "adceb679-9ccc-4436-a8d7-307fb790ad42", + "lastUpdateDateTime": "2022-02-18T19:05:26Z", + "createdDateTime": "2022-02-18T19:05:26Z", + "expirationDateTime": "2022-02-19T19:05:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/adceb679-9ccc-4436-a8d7-307fb790ad42?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000427-0000000000000924-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "58bc7863-c9c1-4809-b287-5f6b9409c369" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ffb3956f-cd02-4644-b338-594032155d5f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "adceb679-9ccc-4436-a8d7-307fb790ad42", + "lastUpdateDateTime": "2022-02-18T19:05:26Z", + "createdDateTime": "2022-02-18T19:05:26Z", + "expirationDateTime": "2022-02-19T19:05:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/adceb679-9ccc-4436-a8d7-307fb790ad42?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000428-0000000000000926-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5e36e6f0-2ff7-40be-b385-8632c139b6da" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "35585e2d-febf-4ed3-a191-f4b27e5d1735", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "adceb679-9ccc-4436-a8d7-307fb790ad42", + "lastUpdateDateTime": "2022-02-18T19:05:26Z", + "createdDateTime": "2022-02-18T19:05:26Z", + "expirationDateTime": "2022-02-19T19:05:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/adceb679-9ccc-4436-a8d7-307fb790ad42?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000429-0000000000000928-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c477964e-0157-4f48-bd61-174257d20a2a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bdda91bc-f361-46fa-b6fe-2be4c2460ae9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" + }, + "ResponseBody": { + "jobId": "adceb679-9ccc-4436-a8d7-307fb790ad42", + "lastUpdateDateTime": "2022-02-18T19:05:29Z", + "createdDateTime": "2022-02-18T19:05:26Z", + "expirationDateTime": "2022-02-19T19:05:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:29.3233723Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/adceb679-9ccc-4436-a8d7-307fb790ad42?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000430-0000000000000930-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a124cb61-d5c9-442a-a34f-63e717eafae0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a54960e-1225-4a23-8ce9-de7a9fca7021", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "114" + }, + "ResponseBody": { + "jobId": "adceb679-9ccc-4436-a8d7-307fb790ad42", + "lastUpdateDateTime": "2022-02-18T19:05:29Z", + "createdDateTime": "2022-02-18T19:05:26Z", + "expirationDateTime": "2022-02-19T19:05:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:29.3233723Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.js deleted file mode 100644 index e3c449eac4df..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.js +++ /dev/null @@ -1,370 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a788ea793ca9ab6cfdd7b8b7eb1d2dfd"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd9ad8218-59ec-43b8-9237-fa87377fc100', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkQl-NrNmQ5GnyOWiaebq8A; expires=Mon, 22-Nov-2021 00:44:05 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3b3D8fLWzfzil8qaX9jvbOHTA_M3exHnY0yMxVXaA3jNYoXD48WtCg6Yf1DlKSb77ZzsbozF7rI9CICNgPOgSazWzo27I0hBGT2NQw8zwYmbvOkTA6v0lKL_NrTpHFODWf_W07fmDH0lg9kCCB2pZ2xlNJpjb8623v6BTHFFP18gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2b12dcad-3958-415b-bc54-51fda5e50500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsPhRZaszYNLt1qHnBt648E; expires=Mon, 22-Nov-2021 00:44:05 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSna5QcD6WsLoONE1wBv1UaecUFL5Hi8DqkVypn468FGNhMpkd7GJ2Tw3N3WE0V90Tb3SbCM96CbxaEJcFESNRHbX9eZPlAnHYDLy2cTqYOHcxXOxS2S1pXVdfM3LNuly63VQ8PvtOGCuGTf-pZs6DEmBR1j1VXGIaf7lBcLtUywgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a7ea6296-24ca-4a37-ae4d-80fa3462d228&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406989cb0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aq132D3p4c1EnRmkBcKX-pA; expires=Mon, 22-Nov-2021 00:44:05 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\n \n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\n \n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\n \n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\n \n “Traditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,” he explained. “Based on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.”\n \n “Now, with Windows 365, we can do that within less than an hour of the account being created,” he said.\n \n Windows 365 puts Microsoft’s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\n \n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\n \n “Windows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not – maybe it was too costly, too complex or they didn’t have the expertise in house to do it,” said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\n \n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\n \n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user’s choosing from anywhere with an internet connection.\n \n “You want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office – you want them to have that same experience,” he said. “And you want them to have that experience in such a way that it feels familiar to them. It’s not this jolting thing that takes away all the things they love about Windows.”\n \n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft’s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\n \n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience – gamers – lacks an IT department to lean on when things glitch. “That started me thinking, ‘How do we build something that doesn’t require IT intervention, something that could truly scale to the consumer market?’” Manchester said.\n \n The consumer experience was Manchester’s benchmark when he started work on virtualization.\n \n “I took note of every time there was something that didn’t quite deliver on that,” he said. “And, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.”\n \n Covering that ground led to improvements in Microsoft’s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\n \n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\n \n “When we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,” he said.\n \n Soon after this bar was set, and the first batch of hires made – a handful of experts in virtualization and user experience – COVID-19 hit and changed the world.\n \n “We hired everybody else during the pandemic,” Manchester said. “They were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations – their bar was the experience they had on their laptop – and we basically used Windows 365 to build Windows 365.”\n \n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\n \n “We’re giving you Windows from the cloud,” Manchester said.\n ","language":"en"},{"id":"1","text":"\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said. She explained that customers were asking, “’How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?”\n\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there – in the office, at home or a coffee shop.\n\n “And then, when you’re done, you’re done. You won’t have any issues around security because you’re not saving anything on your device,” McKelvey said, noting that all the data is stored in the cloud.\n\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\n\n “I think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,” McKelvey said.\n\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\n\n We didn’t run it for very long,” he said. “It didn’t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.”\n\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government’s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester’s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\n\n “The impact that I believe we are finding, and the impact that we’re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,” he said.\n\n “Being able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.”\n ","language":"en"}]},"tasks":{"extractiveSummarizationTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit","sentenceCount":5,"sortBy":"Offset"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5', - 'x-envoy-upstream-service-time', - '185', - 'apim-request-id', - 'a0482e02-151f-43e3-a112-1aa723a4fb14', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'e7f73a14-9af1-4137-89c9-9cf5195c6490', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '63', - 'apim-request-id', - 'e7e6fe77-0803-4cc3-8eeb-b705f0f46ede', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '0fe6a179-e5f4-4fed-a554-d7304b3e0baa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '0b273ffd-6196-462b-b1d4-e56601f167cc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f749ecf4-a23a-4cc3-b2da-ac086fbb0c26', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '3d2ef8b8-47d1-4597-9b3f-d81da28a950c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'e934127c-15b0-4974-8fd7-5f08f938908e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'd342263d-a680-4221-864d-eeeb8a538dcb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'aca2d812-ff9f-4b14-b63f-240a189b1485', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:06Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '55628807-ea77-4d42-a49c-ca30e55e86b3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:24Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"extractiveSummarizationTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:24.0414391Z","state":"succeeded","results":{"documents":[{"id":"0","sentences":[{"text":"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.","rankScore":0.24,"offset":531,"length":160},{"text":"Windows 365 puts Microsoft’s flagship operating system in the cloud.","rankScore":0.26,"offset":1864,"length":68},{"text":"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.","rankScore":0.26,"offset":2283,"length":184},{"text":"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.","rankScore":0.49,"offset":2468,"length":156},{"text":"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.","rankScore":1,"offset":2625,"length":156}],"warnings":[]},{"id":"1","sentences":[{"text":"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.","rankScore":0.63,"offset":11,"length":274},{"text":"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.","rankScore":0.79,"offset":1109,"length":234},{"text":"It enables employees accustomed to working from home to continue working from home;","rankScore":1,"offset":1344,"length":83},{"text":"it enables companies to hire interns from halfway around the world;","rankScore":0.86,"offset":1428,"length":67},{"text":"it allows startups to scale without requiring IT expertise.","rankScore":0.66,"offset":1496,"length":59}],"warnings":[]}],"errors":[],"modelVersion":"2021-08-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '84', - 'apim-request-id', - 'c0e2d7ee-6bf7-4d73-9a1c-ea6c3c5aa144', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:24 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/380dc56a-f44f-4f8a-b410-0a2f2efa04b5') - .query(true) - .reply(200, {"jobId":"380dc56a-f44f-4f8a-b410-0a2f2efa04b5","lastUpdateDateTime":"2021-10-23T00:44:24Z","createdDateTime":"2021-10-23T00:44:05Z","expirationDateTime":"2021-10-24T00:44:05Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"extractiveSummarizationTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:24.0414391Z","state":"succeeded","results":{"documents":[{"id":"0","sentences":[{"text":"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.","rankScore":0.24,"offset":531,"length":160},{"text":"Windows 365 puts Microsoft’s flagship operating system in the cloud.","rankScore":0.26,"offset":1864,"length":68},{"text":"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.","rankScore":0.26,"offset":2283,"length":184},{"text":"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.","rankScore":0.49,"offset":2468,"length":156},{"text":"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.","rankScore":1,"offset":2625,"length":156}],"warnings":[]},{"id":"1","sentences":[{"text":"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.","rankScore":0.63,"offset":11,"length":274},{"text":"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.","rankScore":0.79,"offset":1109,"length":234},{"text":"It enables employees accustomed to working from home to continue working from home;","rankScore":1,"offset":1344,"length":83},{"text":"it enables companies to hire interns from halfway around the world;","rankScore":0.86,"offset":1428,"length":67},{"text":"it allows startups to scale without requiring IT expertise.","rankScore":0.66,"offset":1496,"length":59}],"warnings":[]}],"errors":[],"modelVersion":"2021-08-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '197', - 'apim-request-id', - 'eeb7b012-0a2f-40d7-bc60-f6471ee53370', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:24 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json new file mode 100644 index 000000000000..84fb5a0d2a34 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json @@ -0,0 +1,417 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "11477", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000419-0000000000000907-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2511a153-b23e-49a1-88a6-3f384dbe1751" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\n \n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\n \n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\n \n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\n \n \u201CTraditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,\u201D he explained. \u201CBased on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.\u201D\n \n \u201CNow, with Windows 365, we can do that within less than an hour of the account being created,\u201D he said.\n \n Windows 365 puts Microsoft\u2019s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\n \n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.\n \n \u201CWindows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not \u2013 maybe it was too costly, too complex or they didn\u2019t have the expertise in house to do it,\u201D said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\n \n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\n \n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user\u2019s choosing from anywhere with an internet connection.\n \n \u201CYou want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office \u2013 you want them to have that same experience,\u201D he said. \u201CAnd you want them to have that experience in such a way that it feels familiar to them. It\u2019s not this jolting thing that takes away all the things they love about Windows.\u201D\n \n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft\u2019s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\n \n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience \u2013 gamers \u2013 lacks an IT department to lean on when things glitch. \u201CThat started me thinking, \u2018How do we build something that doesn\u2019t require IT intervention, something that could truly scale to the consumer market?\u2019\u201D Manchester said.\n \n The consumer experience was Manchester\u2019s benchmark when he started work on virtualization.\n \n \u201CI took note of every time there was something that didn\u2019t quite deliver on that,\u201D he said. \u201CAnd, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.\u201D\n \n Covering that ground led to improvements in Microsoft\u2019s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\n \n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\n \n \u201CWhen we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,\u201D he said.\n \n Soon after this bar was set, and the first batch of hires made \u2013 a handful of experts in virtualization and user experience \u2013 COVID-19 hit and changed the world.\n \n \u201CWe hired everybody else during the pandemic,\u201D Manchester said. \u201CThey were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations \u2013 their bar was the experience they had on their laptop \u2013 and we basically used Windows 365 to build Windows 365.\u201D\n \n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\n \n \u201CWe\u2019re giving you Windows from the cloud,\u201D Manchester said.\n ", + "language": "en" + }, + { + "id": "1", + "text": "\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said. She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D\n\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.\n\n \u201CAnd then, when you\u2019re done, you\u2019re done. You won\u2019t have any issues around security because you\u2019re not saving anything on your device,\u201D McKelvey said, noting that all the data is stored in the cloud.\n\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\n\n \u201CI think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,\u201D McKelvey said.\n\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\n\n We didn\u2019t run it for very long,\u201D he said. \u201CIt didn\u2019t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.\u201D\n\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government\u2019s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester\u2019s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\n\n \u201CThe impact that I believe we are finding, and the impact that we\u2019re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,\u201D he said.\n\n \u201CBeing able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.\u201D\n ", + "language": "en" + } + ] + }, + "tasks": { + "extractiveSummarizationTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit", + "sentenceCount": 5, + "sortBy": "Offset" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "85cf037d-28b8-4704-8e32-c4310e031f47", + "Date": "Fri, 18 Feb 2022 19:05:20 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/24687406-353b-4981-a061-6520f7865d77", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/24687406-353b-4981-a061-6520f7865d77?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000420-0000000000000909-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a73885c5-852b-4b8c-bd48-9466e00753bb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "05bb9acd-cb4d-48fb-9120-a427a7e2869b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "jobId": "24687406-353b-4981-a061-6520f7865d77", + "lastUpdateDateTime": "2022-02-18T19:05:20Z", + "createdDateTime": "2022-02-18T19:05:20Z", + "expirationDateTime": "2022-02-19T19:05:20Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/24687406-353b-4981-a061-6520f7865d77?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000421-0000000000000911-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "71e7ed98-bd0a-4594-9026-a550baa4655b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "895d8a31-b06e-419b-98d0-689cf9d83dde", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "24687406-353b-4981-a061-6520f7865d77", + "lastUpdateDateTime": "2022-02-18T19:05:21Z", + "createdDateTime": "2022-02-18T19:05:20Z", + "expirationDateTime": "2022-02-19T19:05:20Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/24687406-353b-4981-a061-6520f7865d77?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000422-0000000000000913-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a23cfc8f-1704-4b00-90ba-5b93745ec616" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4cf9e97-bdd4-4c4f-ac58-cc78887a4d35", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "24687406-353b-4981-a061-6520f7865d77", + "lastUpdateDateTime": "2022-02-18T19:05:21Z", + "createdDateTime": "2022-02-18T19:05:20Z", + "expirationDateTime": "2022-02-19T19:05:20Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/24687406-353b-4981-a061-6520f7865d77?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000423-0000000000000915-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7def851e-7482-4e17-9d0e-c7814115634f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3c18973b-f41c-45e7-887b-c8e3425b0f7c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "jobId": "24687406-353b-4981-a061-6520f7865d77", + "lastUpdateDateTime": "2022-02-18T19:05:25Z", + "createdDateTime": "2022-02-18T19:05:20Z", + "expirationDateTime": "2022-02-19T19:05:20Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:25.2495923Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/24687406-353b-4981-a061-6520f7865d77?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000424-0000000000000917-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bd55232b-469c-41bc-87be-49aa812e41af" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fcfb2fca-85b0-4b19-94fd-a48b2543813e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "24687406-353b-4981-a061-6520f7865d77", + "lastUpdateDateTime": "2022-02-18T19:05:25Z", + "createdDateTime": "2022-02-18T19:05:20Z", + "expirationDateTime": "2022-02-19T19:05:20Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:25.2495923Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js deleted file mode 100644 index bf38d6b50557..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js +++ /dev/null @@ -1,370 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "61c6632849c9566300af4ee3c143eac6"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c6b8a727-829d-4772-91b0-01cfa8650400', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Armn_27uZgBBid1aNlVQ7_4; expires=Mon, 22-Nov-2021 00:44:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8PrJQ7LukMRm3Ry6dDTdgOVw73BA00KDgSfgKANOOElZHKmZlcxPM6HTA50gnavxBZ6YO8qSjyms-ZfCkBc4fw9KQu_nLjqQV8Iex3GYffTvG8baLq4gn2eJ0Z10q1euikMJ7hLUTfdV7L9M8YTxurQUtt2arU-cElJW9v3vh9IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:27 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c64caa61-3fcc-4dcd-8dea-7ea192500c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Auf1aIPMRiVIu06QqPaS_xs; expires=Mon, 22-Nov-2021 00:44:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqEBmJmWq7yDiTwI9Wz-R3FomHOxm_ttEA9gjdghJCQw376MHNQEsTB0y4b8vCMjmkClFy7dn1QAgBTf9ThZr-0ERh12191ctGbo6pGR_pMVCf-3Hxgh48Dz2iO5Qmf3--vPnlzIrvkDQIuA6K2FgN5ThEoNNAjw9mqNz7sgl8LYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:28 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4208bf23-c365-4e58-af58-f5e49f850cac&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993e4e020d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aj4mv5gAfoRFsTbeqNN8HmU; expires=Mon, 22-Nov-2021 00:44:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:44:28 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab', - 'x-envoy-upstream-service-time', - '183', - 'apim-request-id', - 'ffe6eadd-b0c6-4af1-be06-1e2d99db0196', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:28Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'ce8fbb48-e6c1-4fa7-805c-dd6d692dd405', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:28Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8fe1f880-33c3-4f65-bedd-3d5b7cadc70e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'ee11e60a-2f68-4d07-a0f5-8d85d451148b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '7ced19ca-08b3-4f56-9c03-207be06282fb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'd67d3a46-89d4-4c40-abf9-c97a1a6a67a5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'dc57fff1-5676-40be-bd9a-38084ad5793f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'cf86467b-7ca5-4e2d-8f45-6f645db737f9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '809bdbcb-eddd-4398-97f9-f39a317613e3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '9e46691b-146f-40c2-afac-bee53c147d67', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:29Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'de9f0e11-debb-4247-a2dc-0ba19a5eb204', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:46Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:46.551289Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '63', - 'apim-request-id', - 'c6d3e375-5234-4438-9c49-ee01b54b7b6d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/82520780-a4f6-4b51-8875-134767ec15ab') - .query(true) - .reply(200, {"jobId":"82520780-a4f6-4b51-8875-134767ec15ab","lastUpdateDateTime":"2021-10-23T00:44:46Z","createdDateTime":"2021-10-23T00:44:28Z","expirationDateTime":"2021-10-24T00:44:28Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:44:46.551289Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '105', - 'apim-request-id', - 'ea9fc193-c4b0-43a2-8305-a18c13f3f0e0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:44:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json new file mode 100644 index 000000000000..f20f4df6c466 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "287", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000431-0000000000000933-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "01eed15f-9f50-459e-a66f-24f81ddbef78" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "33261232-67d2-4c76-80fe-9bca53955b3c", + "Date": "Fri, 18 Feb 2022 19:05:31 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/23028da8-8a3e-4c3f-b4c7-845ad97ceedc", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/23028da8-8a3e-4c3f-b4c7-845ad97ceedc?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000432-0000000000000935-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f3e4c021-ed04-45d0-ab3a-a3f59cb146c1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9dffd18a-1839-46cf-96a8-11f1d41eaeb7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "23028da8-8a3e-4c3f-b4c7-845ad97ceedc", + "lastUpdateDateTime": "2022-02-18T19:05:32Z", + "createdDateTime": "2022-02-18T19:05:32Z", + "expirationDateTime": "2022-02-19T19:05:32Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/23028da8-8a3e-4c3f-b4c7-845ad97ceedc?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000433-0000000000000937-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c81bd5f4-bfb6-4187-9fe8-42d5632fcbbf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab456d83-8e4d-4ba5-b598-c95735c48e84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "23028da8-8a3e-4c3f-b4c7-845ad97ceedc", + "lastUpdateDateTime": "2022-02-18T19:05:32Z", + "createdDateTime": "2022-02-18T19:05:32Z", + "expirationDateTime": "2022-02-19T19:05:32Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/23028da8-8a3e-4c3f-b4c7-845ad97ceedc?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000434-0000000000000939-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ce2c7f7e-8ddc-4dd0-881e-b51140b9da8a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d2c914b-993b-4772-a0bc-993f7733e7d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "23028da8-8a3e-4c3f-b4c7-845ad97ceedc", + "lastUpdateDateTime": "2022-02-18T19:05:32Z", + "createdDateTime": "2022-02-18T19:05:32Z", + "expirationDateTime": "2022-02-19T19:05:32Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/23028da8-8a3e-4c3f-b4c7-845ad97ceedc?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000435-0000000000000941-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2248d3b8-8461-4ebb-b580-5281e4826ab7" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e6aa2e87-ec64-4c3e-8882-a17e210293b4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "23028da8-8a3e-4c3f-b4c7-845ad97ceedc", + "lastUpdateDateTime": "2022-02-18T19:05:36Z", + "createdDateTime": "2022-02-18T19:05:32Z", + "expirationDateTime": "2022-02-19T19:05:32Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:36.2670417Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/23028da8-8a3e-4c3f-b4c7-845ad97ceedc?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000436-0000000000000943-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7c01d659-25ff-4b6c-9b2b-540b13602a7d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6875d66-613d-46d2-bd94-f00d54e93325", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "jobId": "23028da8-8a3e-4c3f-b4c7-845ad97ceedc", + "lastUpdateDateTime": "2022-02-18T19:05:36Z", + "createdDateTime": "2022-02-18T19:05:32Z", + "expirationDateTime": "2022-02-19T19:05:32Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:36.2670417Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js deleted file mode 100644 index 799c6d0393bb..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js +++ /dev/null @@ -1,230 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "5e57524070a1097a4629feb2ca2d4fbc"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'f9b6f37c-24fc-492f-830f-9461370cf200', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AuHHvb3hv1RCvkzAiv_wCOA; expires=Mon, 22-Nov-2021 00:45:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrw1BGXFxKNgzBNiodT3qffOORbmsd_-zbHRUgmysC7IsNEj0pZ9Ys3q2R43T8EARa4GhuhZD1jNE2OsQQsESLlW0Ud-IAr-PP0BhIViidJgjK0vU91f7dGr8ojNWefg8uALJZGKVNOqHwkU4t-_i4O6Nrqm_1P794aTtOoWcNQC8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:07 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820098000400', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AqDfcWc52pNJu2AAvqdny18; expires=Mon, 22-Nov-2021 00:45:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevriL91aGSn8JjmmGU3RspguxdlOdH6C7hJndj3eNRlheft4d-wm1aOnNBZ2OK7qXeBLGOzN_GcMnTVQ3ymjP7veb19ha0PHt1-YCvXo_hPlrXXT_ews3C2AI3OmGxDWHTcg8Gv2tzTGjt3_h0SWXaQSJ7DXHSJksem7nJ3mKzDqHIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:07 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=9904c9d2-5b47-4edf-8f22-f762853397ea&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406954d30500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aiuho6o7HVdMlmaZKsIp_KI; expires=Mon, 22-Nov-2021 00:45:08 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:07 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"3","text":"Is 998.214.865-68 your Brazilian CPF number?"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623', - 'x-envoy-upstream-service-time', - '251', - 'apim-request-id', - '4e48065e-ce07-4c71-8853-0575f53f1fd3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623') - .query(true) - .reply(200, {"jobId":"cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623","lastUpdateDateTime":"2021-10-23T00:45:08Z","createdDateTime":"2021-10-23T00:45:08Z","expirationDateTime":"2021-10-24T00:45:08Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'faaa60fb-95bf-41e9-a3fc-ae1a1a3ecf49', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623') - .query(true) - .reply(200, {"jobId":"cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623","lastUpdateDateTime":"2021-10-23T00:45:08Z","createdDateTime":"2021-10-23T00:45:08Z","expirationDateTime":"2021-10-24T00:45:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '0d686f4a-ed17-4d11-9315-4d2e846909c3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623') - .query(true) - .reply(200, {"jobId":"cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623","lastUpdateDateTime":"2021-10-23T00:45:08Z","createdDateTime":"2021-10-23T00:45:08Z","expirationDateTime":"2021-10-24T00:45:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - 'ac5982a5-3129-4892-9d0c-efe5f1bef5ed', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623') - .query(true) - .reply(200, {"jobId":"cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623","lastUpdateDateTime":"2021-10-23T00:45:11Z","createdDateTime":"2021-10-23T00:45:08Z","expirationDateTime":"2021-10-24T00:45:08Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:11.7481014Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '146', - 'apim-request-id', - 'a414b72c-6d44-4edd-aa7c-e4fc4e5e06ed', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623') - .query(true) - .reply(200, {"jobId":"cf3a5e2e-c1ac-460e-8d8a-e07eedb8d623","lastUpdateDateTime":"2021-10-23T00:45:11Z","createdDateTime":"2021-10-23T00:45:08Z","expirationDateTime":"2021-10-24T00:45:08Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:11.7481014Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '76', - 'apim-request-id', - '7973e8bb-16e1-4145-ad57-34bcadbf2853', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:13 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json new file mode 100644 index 000000000000..2f5fa21e23af --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json @@ -0,0 +1,331 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "383", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000448-0000000000000970-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "db4c9669-4123-4d26-a5ef-c825dffc5a35" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "3", + "text": "Is 998.214.865-68 your Brazilian CPF number?" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1ffabf51-53a8-4b3a-b4c5-2366e94fc946", + "Date": "Fri, 18 Feb 2022 19:05:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eba124cf-d1f5-4277-bed5-47482b687f0e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "219" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eba124cf-d1f5-4277-bed5-47482b687f0e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000449-0000000000000972-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8836454e-c53d-463d-a0c7-c370c264b34a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "592cf4f5-cf80-4670-adec-ce39f8ba602c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "eba124cf-d1f5-4277-bed5-47482b687f0e", + "lastUpdateDateTime": "2022-02-18T19:05:49Z", + "createdDateTime": "2022-02-18T19:05:49Z", + "expirationDateTime": "2022-02-19T19:05:49Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eba124cf-d1f5-4277-bed5-47482b687f0e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000450-0000000000000974-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a920fa16-e937-48a5-98af-c0533a8d98be" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c0cc10a-22b4-4c12-90a8-349739c9f21f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "eba124cf-d1f5-4277-bed5-47482b687f0e", + "lastUpdateDateTime": "2022-02-18T19:05:49Z", + "createdDateTime": "2022-02-18T19:05:49Z", + "expirationDateTime": "2022-02-19T19:05:49Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eba124cf-d1f5-4277-bed5-47482b687f0e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000451-0000000000000976-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b0851318-5ac3-4020-9c8d-9a0a41ff35df" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f2b6337-01d8-4a60-a13f-5af10c54cd59", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "638" + }, + "ResponseBody": { + "jobId": "eba124cf-d1f5-4277-bed5-47482b687f0e", + "lastUpdateDateTime": "2022-02-18T19:05:51Z", + "createdDateTime": "2022-02-18T19:05:49Z", + "expirationDateTime": "2022-02-19T19:05:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:51.8704781Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/eba124cf-d1f5-4277-bed5-47482b687f0e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000452-0000000000000978-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3878394d-5315-423e-8ae4-49d1a25666ec" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2c84ce54-41a4-445d-a826-9724c1e1bbc4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "jobId": "eba124cf-d1f5-4277-bed5-47482b687f0e", + "lastUpdateDateTime": "2022-02-18T19:05:51Z", + "createdDateTime": "2022-02-18T19:05:49Z", + "expirationDateTime": "2022-02-19T19:05:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:51.8704781Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.js deleted file mode 100644 index 7a86981fe870..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.js +++ /dev/null @@ -1,210 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c669728e0d1db74e6165e8ee080b20d0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '49b658ee-08c8-44b0-bc55-990ca3515600', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ao15j-m6vvtJo1XhGdR2PM8; expires=Mon, 22-Nov-2021 00:45:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr43RnP9SZV_k1sCStjLAuiEkp3zzPFrcVkO-Taj_Or7tlGxtz8f4RuKpB9aCUCsOXR4N3wnqdfqUR_UkZ3jPxYGU7yIoJaKuXqLw2dt0M5wZ5XJpt6HeiEOY4C6iWtAyKc0Zv3N7thHZnSlkY9DdTVU1niDMp10nTRU-s4CB3WnUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:12 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1c3fd893-5cba-468f-8c4a-820047010400', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AgrwXr3RE1lBmIsto0F4lXU; expires=Mon, 22-Nov-2021 00:45:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_QrbGgtRhW9MuX-FdCSd0TK-zq_usfVoFWlk8PjmyZ2hX_P8cQ1OPVG2az1NMJmu_1Afr_ACsBza4KTV7atHCqahhCMCN4-5KvYV9nRPBursHcSofC15IEOrmDA0v4J6L7FtzIYf7otUz0LtdwT-c8JrRz-3DHL5LYNurumnfecgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:12 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=2114c525-0900-4ff4-a887-f537e22e5de5&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-4069fcd30500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhW_4D-knNFBtUENF1prfEw; expires=Mon, 22-Nov-2021 00:45:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:13 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","piiCategories":["USSocialSecurityNumber"],"stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9e4377b5-46b3-4523-8b8a-d896dbb59464', - 'x-envoy-upstream-service-time', - '217', - 'apim-request-id', - 'a10e497e-6450-478f-9489-db54735277ab', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9e4377b5-46b3-4523-8b8a-d896dbb59464') - .query(true) - .reply(200, {"jobId":"9e4377b5-46b3-4523-8b8a-d896dbb59464","lastUpdateDateTime":"2021-10-23T00:45:13Z","createdDateTime":"2021-10-23T00:45:13Z","expirationDateTime":"2021-10-24T00:45:13Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - '9a6dfb92-6028-412f-8bd0-7c825a08bb45', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9e4377b5-46b3-4523-8b8a-d896dbb59464') - .query(true) - .reply(200, {"jobId":"9e4377b5-46b3-4523-8b8a-d896dbb59464","lastUpdateDateTime":"2021-10-23T00:45:13Z","createdDateTime":"2021-10-23T00:45:13Z","expirationDateTime":"2021-10-24T00:45:13Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '8554fdef-57c4-47c2-ad6a-6a1848cd3ede', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9e4377b5-46b3-4523-8b8a-d896dbb59464') - .query(true) - .reply(200, {"jobId":"9e4377b5-46b3-4523-8b8a-d896dbb59464","lastUpdateDateTime":"2021-10-23T00:45:15Z","createdDateTime":"2021-10-23T00:45:13Z","expirationDateTime":"2021-10-24T00:45:13Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:15.8866032Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '175', - 'apim-request-id', - '1df6fe98-98d8-4ad3-aa82-a6311ae4f3d5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9e4377b5-46b3-4523-8b8a-d896dbb59464') - .query(true) - .reply(200, {"jobId":"9e4377b5-46b3-4523-8b8a-d896dbb59464","lastUpdateDateTime":"2021-10-23T00:45:15Z","createdDateTime":"2021-10-23T00:45:13Z","expirationDateTime":"2021-10-24T00:45:13Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:15.8866032Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '89', - 'apim-request-id', - '40674823-df99-414c-800a-70492f81644a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:16 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json new file mode 100644 index 000000000000..c1972151d1c9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json @@ -0,0 +1,274 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "470", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000453-0000000000000981-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5d5cf5d5-ec44-47fd-ba74-a45bb3c7aa54" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "piiCategories": [ + "USSocialSecurityNumber" + ], + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3a749b24-5959-4476-8a9a-8eba60b9ed2c", + "Date": "Fri, 18 Feb 2022 19:05:53 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5faaa59d-9b61-4106-b41e-ce938bede2ee", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "151" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5faaa59d-9b61-4106-b41e-ce938bede2ee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000454-0000000000000983-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "832b0f29-a4bb-427a-9236-ef47fcfa65b6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a3c60f81-dbea-4f59-8567-8eddb8c9d202", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "5faaa59d-9b61-4106-b41e-ce938bede2ee", + "lastUpdateDateTime": "2022-02-18T19:05:53Z", + "createdDateTime": "2022-02-18T19:05:53Z", + "expirationDateTime": "2022-02-19T19:05:53Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5faaa59d-9b61-4106-b41e-ce938bede2ee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000455-0000000000000985-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "359e971c-e89f-4880-adde-0c15a9626440" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e694b13d-6552-4a0f-a5ea-8c194eef92e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "5faaa59d-9b61-4106-b41e-ce938bede2ee", + "lastUpdateDateTime": "2022-02-18T19:05:53Z", + "createdDateTime": "2022-02-18T19:05:53Z", + "expirationDateTime": "2022-02-19T19:05:53Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5faaa59d-9b61-4106-b41e-ce938bede2ee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000456-0000000000000987-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "391ca86a-d193-4eab-be31-93f19b72d8cf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3a6679d-b60a-4c28-9c59-ca50b754dcaa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "jobId": "5faaa59d-9b61-4106-b41e-ce938bede2ee", + "lastUpdateDateTime": "2022-02-18T19:05:55Z", + "createdDateTime": "2022-02-18T19:05:53Z", + "expirationDateTime": "2022-02-19T19:05:53Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:55.8069663Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5faaa59d-9b61-4106-b41e-ce938bede2ee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000457-0000000000000989-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7e994016-66ba-403f-9fc8-c4e07b652b1b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4005413-d93b-4ea2-81e4-1b5c4d7855ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "5faaa59d-9b61-4106-b41e-ce938bede2ee", + "lastUpdateDateTime": "2022-02-18T19:05:55Z", + "createdDateTime": "2022-02-18T19:05:53Z", + "expirationDateTime": "2022-02-19T19:05:53Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:05:55.8069663Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js deleted file mode 100644 index 6df3162a66b0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js +++ /dev/null @@ -1,410 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "47ccb6b273464d762e251199e8b5c042"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '47f8bb19-fe85-47c4-bde9-c8c1d4dccd00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AoN19U7SwsBNi-ZHmkjnY8I; expires=Mon, 22-Nov-2021 00:45:16 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2ZFuGluqE-dd_GJR5ongIKoWQfmonWuOeCQOOoqDgIMrVf5Q0qO-rEJUajR9U8zMQKxZjfoDVfbh0OFu9g6iRGtH7fqaTfu_7MjASktpgeY6-EShKNKxpy2UGQCGJfhUp3Os5q-rOdquHLleu-CoCM37u74m5XoAPJL-jVDlbYwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:15 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993eb8060d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Antjma-_l7BMoFHMuOkQk5k; expires=Mon, 22-Nov-2021 00:45:16 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXiB-BJtZFXVz1yQhoYClphW4620xunlEShdtwQYXHretkClGe0_71yY5F-BRuW5herqNuKh8eCS_G1OpSoDIUuGJwi5ZJ0MlMBLGyqX3BJFEg1Mec6pTOVDmp7EulHvzzcej1hIjfDIf5gIPLUQH1ZHMy2AQEAv0I4pqr12lhtggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:16 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a30a96ed-a2e8-4208-8b33-cff655900cd1&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29bc2080d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArTvMvV2qE5Csnyhggsyzc4; expires=Mon, 22-Nov-2021 00:45:16 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:16 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"The food was unacceptable","language":"en"},{"id":"1","text":"The rooms were beautiful. The AC was good and quiet.","language":"en"},{"id":"2","text":"The breakfast was good, but the toilet was smelly.","language":"en"},{"id":"3","text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","language":"en"},{"id":"4","text":"I had a great unobstructed view of the Microsoft campus.","language":"en"},{"id":"5","text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","language":"en"},{"id":"6","text":"The toilet smelled.","language":"en"}]},"tasks":{"sentimentAnalysisTasks":[{"parameters":{"opinionMining":true,"stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60', - 'x-envoy-upstream-service-time', - '387', - 'apim-request-id', - '5151d7ff-15ad-487a-a739-634a3b65ab47', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '84416860-f4d1-4573-adce-99c0e57a405a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '16', - 'apim-request-id', - '5c05d93a-a2b6-4dab-9b38-aab79f95627e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '1abed46d-7455-4c81-afbf-f0b93ca4a3bc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'c74ae039-2502-4a56-8666-3c1a4b7108fd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'ab93009d-7818-4772-b43d-e48b429fa7cd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '225764e5-8b4f-46a9-b91d-e9a7b09cfd0d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '9f16b38f-5fd5-4717-80e8-741d43d00be5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'd9ab585d-4525-438a-acbf-010156c77404', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:29 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8a8d2fca-bc61-4728-92f8-30cce6c19482', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '71ce0631-9e90-49b5-8658-719c8a286609', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '75920e14-95c1-49d6-8c24-df10fb125fe3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:17Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - 'ce7ab6f8-1ea0-4c33-ba43-9ad3edd9768e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:39Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:39.3703516Z","state":"succeeded","results":{"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '109', - 'apim-request-id', - 'f25e043e-5364-47a4-91ed-a0d00ba065b7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3d340b85-3bef-45cf-a75b-dce2af67ac60') - .query(true) - .reply(200, {"jobId":"3d340b85-3bef-45cf-a75b-dce2af67ac60","lastUpdateDateTime":"2021-10-23T00:45:39Z","createdDateTime":"2021-10-23T00:45:16Z","expirationDateTime":"2021-10-24T00:45:16Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:39.3703516Z","state":"succeeded","results":{"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '137', - 'apim-request-id', - 'a02fc4fa-459f-455f-9642-c0b914e92604', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:39 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json new file mode 100644 index 000000000000..93fd38bb05bb --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json @@ -0,0 +1,1620 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "749", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000458-0000000000000992-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6582cca2-0019-4240-8340-3575b29ae620" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "tasks": { + "sentimentAnalysisTasks": [ + { + "parameters": { + "opinionMining": true, + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "519114a0-f245-4f97-bac8-a8ad29469738", + "Date": "Fri, 18 Feb 2022 19:05:56 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "259" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000459-0000000000000994-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3a21c337-9bd0-4406-b4bd-52b94900ec2c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "88086d36-b2c2-4571-96aa-db82e4a8d473", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:05:57Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000460-0000000000000996-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bb91a899-2b36-45ea-9769-59c91199553e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a99edd0-454a-470b-9d3f-1762f53fc0b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:05:57Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000461-0000000000000998-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "50a3b2d2-bb12-472e-b533-fe0086f79aa7" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcec53fc-dda4-424a-9d24-923bede4bc7e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:05:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:05:57Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000462-0000000000001000-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8364dae6-e4b4-4263-a43a-3926c0d6ab0d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8ba812a-0c40-4ff2-b005-670818986956", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:05:57Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000463-0000000000001002-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ffcebbfb-ce03-4ed1-b46c-e8874a484130" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "04fd5303-cb3d-45f3-941b-a54e0152abf5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:05:57Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000464-0000000000001004-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b01e0fb6-d4dd-46b2-9edc-cc74869cc274" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d98752ea-6cd5-4c55-bded-2e265daade25", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "118" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:06:05Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:05.9945715Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/6158f4f6-82aa-44a1-8df7-54834ee2693b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000465-0000000000001006-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3f6b0a25-2638-49d6-93a8-e18abfa729f9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5611c746-c52c-44d7-921d-25caec07edd7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "313" + }, + "ResponseBody": { + "jobId": "6158f4f6-82aa-44a1-8df7-54834ee2693b", + "lastUpdateDateTime": "2022-02-18T19:06:05Z", + "createdDateTime": "2022-02-18T19:05:57Z", + "expirationDateTime": "2022-02-19T19:05:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:05.9945715Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js deleted file mode 100644 index 99c1cb14a69f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js +++ /dev/null @@ -1,270 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ddb31afd5bdb8c006a752c2060317d17"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7607f894-0aa5-46a0-a2fb-dada36d79200', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AgDCkQIxp8pFrqxZxUovuqE; expires=Mon, 22-Nov-2021 00:45:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrcEQCa1qDbBRsWxRWWs0c8kPu1WZWzkaCf3bK-E-1-mJuDEPA9FgAPMNWMDglWrn9TtwnR4x_TMNo82o2yuMYiMiklz92yc1JO6RiOsEHG0UpX8B1eK0I5dZaJK8A6YTF81OTXHA_jipadbTIR-dXqx0KsqHLruK0x0tVL53yM0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553ab3f80300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AhJT7ogTWRxOmqMDw46bgXk; expires=Mon, 22-Nov-2021 00:45:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9omV2-4eJkGZsI5jtqtXwd9VHk2LEFsfsbQ6vMC7iQLKMrmgoZLrk34RNhv4MfcLtvI2IYVc6sRGrXwBtG0PKOyvg_npgpqnqD2jYgeRGzLB2wGmzBJnmE4g5m0XkkrBIhvzBtKbeS8keLtMXUsS0fXMWXFNIlfGd8JT5IVyebUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ecb3b1fe-c8f2-4e56-acca-2b36cb01642f&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e2b9a0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AtqY_4n-JOlCvnq77QklLChz_bg1AQAAADVSBdkOAAAA; expires=Mon, 22-Nov-2021 00:45:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"The restaurant had really good food. I recommend you try it.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb', - 'x-envoy-upstream-service-time', - '406', - 'apim-request-id', - '79826fcb-9a88-4ddc-a3da-6c07b75bcad3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:41Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'fd4e9d25-1b13-4830-9085-83b2383f4df6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:41Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '059ddbb9-3e31-47a8-9f1e-ec573eaefc29', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:42Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'c7d6c339-cdc3-4e5d-9ddc-dff3a45f0871', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:42Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '16', - 'apim-request-id', - '838feb46-243e-4583-91e2-4a27c247779b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:47Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'cf93fade-9e9f-4290-b326-1db88401d75c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:49Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:48.8850984Z","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:49.2980209Z","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:49.649776Z","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '213', - 'apim-request-id', - 'faccf4fa-b029-4e66-a5f1-4045b83a58a9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/84a85f9d-2aad-4cb4-b1af-97d09ba473eb') - .query(true) - .reply(200, {"jobId":"84a85f9d-2aad-4cb4-b1af-97d09ba473eb","lastUpdateDateTime":"2021-10-23T00:45:49Z","createdDateTime":"2021-10-23T00:45:41Z","expirationDateTime":"2021-10-24T00:45:41Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:48.8850984Z","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:49.2980209Z","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:45:49.649776Z","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '210', - 'apim-request-id', - '2a7b0e95-e854-452a-8452-52f10c1961a1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:45:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json new file mode 100644 index 000000000000..87f665fe725f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json @@ -0,0 +1,533 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "557", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000467-0000000000001012-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "855d1f99-7736-42fd-96e8-f77008fb7616" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "The restaurant had really good food. I recommend you try it.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6cb477df-a8aa-434e-958e-b24fe090c1c0", + "Date": "Fri, 18 Feb 2022 19:06:07 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7592d149-f06a-4fc2-a5f4-567e2664705e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "264" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7592d149-f06a-4fc2-a5f4-567e2664705e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000468-0000000000001014-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a5362f70-ad1f-4c74-b812-5e8499693911" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5ce353ea-2396-4c3b-8937-c0a662c4f2ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "7592d149-f06a-4fc2-a5f4-567e2664705e", + "lastUpdateDateTime": "2022-02-18T19:06:08Z", + "createdDateTime": "2022-02-18T19:06:08Z", + "expirationDateTime": "2022-02-19T19:06:08Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7592d149-f06a-4fc2-a5f4-567e2664705e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000469-0000000000001016-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4626a7e9-c10d-4445-8301-12eebd4232e8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0cc903a9-34d8-485f-ae09-28154f741c13", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "7592d149-f06a-4fc2-a5f4-567e2664705e", + "lastUpdateDateTime": "2022-02-18T19:06:08Z", + "createdDateTime": "2022-02-18T19:06:08Z", + "expirationDateTime": "2022-02-19T19:06:08Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7592d149-f06a-4fc2-a5f4-567e2664705e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000470-0000000000001018-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2268c270-1be8-4568-9af0-7c29f2831a30" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06826d5b-d892-4582-b87c-dc8eeabaace6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "7592d149-f06a-4fc2-a5f4-567e2664705e", + "lastUpdateDateTime": "2022-02-18T19:06:09Z", + "createdDateTime": "2022-02-18T19:06:08Z", + "expirationDateTime": "2022-02-19T19:06:08Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7592d149-f06a-4fc2-a5f4-567e2664705e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000471-0000000000001020-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "17ed0520-2667-4f1a-9fc6-7e56773e8027" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9923e943-3f5f-44e5-b0a7-a790fe1bbc56", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": { + "jobId": "7592d149-f06a-4fc2-a5f4-567e2664705e", + "lastUpdateDateTime": "2022-02-18T19:06:12Z", + "createdDateTime": "2022-02-18T19:06:08Z", + "expirationDateTime": "2022-02-19T19:06:08Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:11.0938417Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:12.3432979Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:11.7564021Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7592d149-f06a-4fc2-a5f4-567e2664705e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000472-0000000000001022-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6ba3e4b5-3684-4f9d-9f35-6736ecee65e5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b687cf90-93e2-45b5-8759-bf8574ed86b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2680" + }, + "ResponseBody": { + "jobId": "7592d149-f06a-4fc2-a5f4-567e2664705e", + "lastUpdateDateTime": "2022-02-18T19:06:12Z", + "createdDateTime": "2022-02-18T19:06:08Z", + "expirationDateTime": "2022-02-19T19:06:08Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:11.0938417Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:12.3432979Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:06:11.7564021Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.js deleted file mode 100644 index a1fb8f73a2cc..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.js +++ /dev/null @@ -1,270 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "5eb1f48c0b2ff864b7682bef634467f1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1393c460-f40f-4782-a14e-9beb4fd36700', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ami9ZMq-wwpPm5H020DrzF0; expires=Sat, 27-Nov-2021 02:47:04 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9yzoSuOOf9_v-tuSJYwliNkMN4wCicww5WK38X2jDscxPY4PpwwgR9hDQn0rYbxLijrdjv5xDpzL8VF8CO3VC2CeQoUKyXipGID92nQkiS8B5eeSAqQ3DZASkzFNU39RwREa8JFF3ONu0l_5OSINOmXT50QdPFz83GmwHSBk1CggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Thu, 28 Oct 2021 02:47:04 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2526a5be-8e08-490f-9911-ddb9c70aba00', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Auk0ezeOt-JNu71zmbM5nWg; expires=Sat, 27-Nov-2021 02:47:04 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAh9V5dpzapQbjy2csZXmvBM_iSwOpa-XDwphJp9anjSWRO9oTJoVISuN-g83-CIvSYrFJnZTCpo1R8DkOl4ABvjfCeYb3jU5cBmKXYSepuXUCVOXvsOvmIxW1yJ3LOVQ2rmqheJOXKAYczIB0hdydFNBLxVsMUW_WSFgX4PvC64gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Thu, 28 Oct 2021 02:47:04 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=02fc277e-c34e-4ed3-a0b7-2d7deec3dfb9&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a224a3d5-f16b-4788-9790-f4316c821301', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsRBQNnUVUFMtGAokrnTt6lz_bg1AQAAACgGDNkOAAAA; expires=Sat, 27-Nov-2021 02:47:04 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Thu, 28 Oct 2021 02:47:04 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"},"taskName":"action1"},{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"},"taskName":"action2"}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048', - 'x-envoy-upstream-service-time', - '280', - 'apim-request-id', - '3df2c40f-cd82-47cf-ac35-4ac09eeb1838', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:05Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '16', - 'apim-request-id', - 'a6873d6a-77c9-48fc-968c-c2db5d2c3513', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:05Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '306f0daf-961f-45b3-a051-b3a839f4bedc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:06Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:06.9681832Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '42', - 'apim-request-id', - '3517044a-50bc-4fb8-87bc-ae02ffa7a5e2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:06Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:06.9681832Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '58', - 'apim-request-id', - 'ec98299c-77a3-4f78-a076-9f96637d2479', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:06Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:06.9681832Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '59', - 'apim-request-id', - '086fa0be-fbbd-4550-876d-8b5b276879c5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:13Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:06.9681832Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}},{"lastUpdateDateTime":"2021-10-28T02:47:13.2331925Z","taskName":"action2","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '91', - 'apim-request-id', - 'a4c09af5-a219-4fc2-af87-82bbc41aea04', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a33fee6e-f701-483d-8a93-81387863e048') - .query(true) - .reply(200, {"jobId":"a33fee6e-f701-483d-8a93-81387863e048","lastUpdateDateTime":"2021-10-28T02:47:13Z","createdDateTime":"2021-10-28T02:47:05Z","expirationDateTime":"2021-10-29T02:47:05Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:06.9681832Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}},{"lastUpdateDateTime":"2021-10-28T02:47:13.2331925Z","taskName":"action2","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '78', - 'apim-request-id', - '2a68163c-3ed2-40d6-adc5-3fb6b2dd2935', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:13 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json new file mode 100644 index 000000000000..db83f6fa0c42 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json @@ -0,0 +1,283 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000568-0000000000001229-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "319e3e2e-343f-4c68-b7fe-a3b1cb4a4d6e" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action1" + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action2" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "7adb6591-3779-483b-9087-3fe9db5197a6", + "Date": "Fri, 18 Feb 2022 19:08:21 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000569-0000000000001231-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8b2836c4-8ee0-4bf1-adab-fd23e447fabb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2062404b-9b6d-4d87-96e6-b09029680cc3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d", + "lastUpdateDateTime": "2022-02-18T19:08:21Z", + "createdDateTime": "2022-02-18T19:08:21Z", + "expirationDateTime": "2022-02-19T19:08:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000570-0000000000001233-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ce362004-ab6b-4aff-800e-66bff5d0f89e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ebdf7942-949b-4bd5-9203-ada6850c05fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d", + "lastUpdateDateTime": "2022-02-18T19:08:21Z", + "createdDateTime": "2022-02-18T19:08:21Z", + "expirationDateTime": "2022-02-19T19:08:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000571-0000000000001235-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a5513010-a3ca-421c-ab0d-28a5200680de" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5595428-2651-47af-8e81-5785541ae583", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "jobId": "3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d", + "lastUpdateDateTime": "2022-02-18T19:08:23Z", + "createdDateTime": "2022-02-18T19:08:21Z", + "expirationDateTime": "2022-02-19T19:08:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:08:23.3272976Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:08:23.2788861Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000572-0000000000001237-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f1cd7e37-400b-4f6e-a008-240c0f6b38d8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b16959b-638e-46f0-a8e7-d8828e361000", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "3f67dc5d-3cd4-43a9-bf83-8a5a24f76e8d", + "lastUpdateDateTime": "2022-02-18T19:08:23Z", + "createdDateTime": "2022-02-18T19:08:21Z", + "expirationDateTime": "2022-02-19T19:08:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:08:23.3272976Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:08:23.2788861Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js deleted file mode 100644 index 2f399f977848..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js +++ /dev/null @@ -1,290 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cadb222b1add133df1ecfeacb4026b4b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '5c2bdc1b-622e-4dcc-aa5d-622d6d355b00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsUJvkxGrnRMiV659fP-3uE; expires=Mon, 22-Nov-2021 00:47:19 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrtVZmXsOwOs07s_9ueTdI4mPDhPYM1i4k_9G0kuzTqithnBjCgwlLiXQyi7YoooIbA9vuodMsvbHstTYmicq3dP2X4hrktsVvyFSUkReKowUp_MvSD9uL6-6AKSa1CLjwudfpQXiejsG-LHN2t7cq9r2dZDHhdn8x2KKE60Ua7J4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:19 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e5140e22-87e2-4251-afae-48f216ee0400', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Aj1DLZ2qaM1Nt7IYzXDBrKM; expires=Mon, 22-Nov-2021 00:47:19 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_14L-J8Zz9HXe6g6H8rG8u_NmeI_VuhH-JmLnVXc_W97yGvX4AMrG8noa4GyWP7XuNhR27iHyaeq6-e3BoZavKCw41fNhT3kjxpeYrb3G9DN2gAjsSd2xJrG0jvu8vqzDpMpZkJlSXvDG1Tkf3i4P-fegHDbtyPUaCPxff0k2QEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:19 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5b18458b-dce4-44fd-a8e7-4478dc0cccff&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'dd2e89b6-166f-4ea2-997a-9588f93d0300', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ai3HtHMUkohDlNqOHrhLne0; expires=Mon, 22-Nov-2021 00:47:20 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:47:19 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56', - 'x-envoy-upstream-service-time', - '321', - 'apim-request-id', - 'b47680a7-7b39-4001-89d0-95f0cb0c1aff', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:20Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'd3705c5f-72d2-47ad-b5e2-923cfd4dcf1f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:20Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '44', - 'apim-request-id', - 'fccec0c3-2202-4273-a0f7-204fb1598bc8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:20Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'd7c48f7a-f617-4d38-99df-e09f5efe4b4a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:20Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'd639c69c-a6fd-41c7-9c74-5ea9afb03185', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:24 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:20Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '011f8246-523d-4f14-815c-cc538edbcc25', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:28Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.0266048Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '76', - 'apim-request-id', - '8426187d-40b5-4d72-9f5e-01f5dcf17c05', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:28Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.9384941Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.94}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.0266048Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.8339378Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '386', - 'apim-request-id', - '3e535458-6c11-4da4-8db8-d22bb6ed12e9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b3550768-0936-4111-9d84-7d8cc43feb56') - .query(true) - .reply(200, {"jobId":"b3550768-0936-4111-9d84-7d8cc43feb56","lastUpdateDateTime":"2021-10-23T00:47:28Z","createdDateTime":"2021-10-23T00:47:20Z","expirationDateTime":"2021-10-24T00:47:20Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.9384941Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.94}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.0266048Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:28.8339378Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '449', - 'apim-request-id', - 'ebbe4a4c-2000-4482-9b63-982ae232ec12', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:30 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json new file mode 100644 index 000000000000..d04ba6487605 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json @@ -0,0 +1,640 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "460", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000518-0000000000001121-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "40ffb8be-022d-457d-be41-6aa3e2ce9515" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "bc456ef8-7f92-4668-bb80-fa63c4b39da1", + "Date": "Fri, 18 Feb 2022 19:07:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "244" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000519-0000000000001123-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "afd6679d-3429-4d94-8267-32fdd7e5183c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8bc3cbc7-1e69-4eab-bca2-f8af1901b70c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:16Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000520-0000000000001125-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e9a5b34f-1131-40fd-be82-42da265120fb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "017b0561-f17f-48f8-a0c6-ece43f0534e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:16Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000521-0000000000001127-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "07e4a6a4-bb6d-484c-8d0b-36e9024e9698" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c069433-1bfa-4223-bbd2-7d0532a10223", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:16Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000522-0000000000001129-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "18294972-57bf-4210-b309-26403feb687b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ee4c145-b280-454f-879c-20fc792cce5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:19Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:19.6494456Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000523-0000000000001131-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c1c3eae0-3e35-4e88-b8e9-b3cc4abb60dd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc851315-3490-484d-a44e-680d613204eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:19Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:19.6494456Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000524-0000000000001133-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d21ad625-1d18-4a47-9d2f-adf66324aa45" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bbc93361-b5b9-4602-ad26-c50568ce5f74", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "413" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:24Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:19.6494456Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:24.0740765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:24.2562429Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ee4897db-a78d-47a5-b8ec-ece74d062d95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000525-0000000000001135-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e26304b7-0903-4539-aeb0-170d0265ab47" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea002b61-4c43-4e0c-b062-d80216ec88b7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "421" + }, + "ResponseBody": { + "jobId": "ee4897db-a78d-47a5-b8ec-ece74d062d95", + "lastUpdateDateTime": "2022-02-18T19:07:24Z", + "createdDateTime": "2022-02-18T19:07:16Z", + "expirationDateTime": "2022-02-19T19:07:16Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:19.6494456Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:24.0740765Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:24.2562429Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js deleted file mode 100644 index 9e1407c0a885..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js +++ /dev/null @@ -1,290 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d2c34eac441d97eba273055b1b130792"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '42d11241-d656-40f1-8c81-17b92baa4700', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkWhqBHUPxBLgu8o-0usDN4; expires=Mon, 22-Nov-2021 00:46:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWt-gPyx1oMlcbXMk644bOOahZ3K_T2CJbscWIIqRl8B7gXCeCNNQMYeDzhZIQPF0KAHipFcz22ovU1-4-itd1MEy8T6axbzCJfz1Q2Jo2d3m6lFwY32cqSzdhO8aa5I0vXOPSRIPJM35hRLhpWQaD6pA98PuiQkwL484E_67a48gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:37 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993e9e0f0d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Aod5nIkjA4JJsPpMPuMNgMo; expires=Mon, 22-Nov-2021 00:46:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFwX9yGqaNctRRa3xdQQIM6QiT7FAXzlRiO0ad063Rx8tcVucfyyCltWg1WYMfCe3pnEG-SDnjn-C0XyXElqxTpsGiG1ZBcZgCsRafikjn0C6QeOhBTiiIMPWTFaF4RvnzFtdMF0rt5LEUG8ou3mkjy8SrUtzS7SI3BJxN5Y3eiAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:37 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=8264244d-17e8-4501-8cc1-64463eb3003e&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993ea10f0d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AiOA6FH1ne1JhIEKnPiV4bg; expires=Mon, 22-Nov-2021 00:46:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:37 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170', - 'x-envoy-upstream-service-time', - '402', - 'apim-request-id', - '3ffb294a-3af9-4381-a98b-1d35619c6464', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:38Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - '23c636d1-f795-4c85-8936-a1fc3d5d3ab9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:38Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - 'b4c29fba-b8ed-41bd-9446-facb3067bd27', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:38Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '2b3fbeda-074f-42de-a942-319e6524ed0a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:38Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f2fbc9cd-0ef9-4845-8dcc-80ca5160c580', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:38Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '5d54c50c-18a1-47fc-bfaa-8f6de283ee7c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:46Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:45.9369975Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:46.1217027Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '276', - 'apim-request-id', - '80f5ce54-8980-4160-985e-17196f817cba', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:47Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:45.9369975Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:47.1642701Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:46.1217027Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '370', - 'apim-request-id', - '58e7c698-6beb-4902-ab40-1bc1de590e4e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a4a36fc8-0aab-44cb-97d8-9fbfaadb1170') - .query(true) - .reply(200, {"jobId":"a4a36fc8-0aab-44cb-97d8-9fbfaadb1170","lastUpdateDateTime":"2021-10-23T00:46:47Z","createdDateTime":"2021-10-23T00:46:38Z","expirationDateTime":"2021-10-24T00:46:38Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:45.9369975Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:47.1642701Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:46.1217027Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '209', - 'apim-request-id', - 'f8434684-848b-41be-a137-60fb169071d8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:49 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json new file mode 100644 index 000000000000..48f2d6bf9c56 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json @@ -0,0 +1,557 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000501-0000000000001084-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6dcd24f6-3c3f-4600-ac65-8639d6a9686a" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "94c6669b-0332-48d9-959d-3768f6c334e3", + "Date": "Fri, 18 Feb 2022 19:06:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1bab5d2a-589d-4872-9fb8-604d993be94b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "370" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1bab5d2a-589d-4872-9fb8-604d993be94b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000502-0000000000001086-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5659240d-7095-4735-8013-9308fc7fc513" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c258137-b4b4-4d9c-b3b7-39d8f42d5178", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "1bab5d2a-589d-4872-9fb8-604d993be94b", + "lastUpdateDateTime": "2022-02-18T19:06:59Z", + "createdDateTime": "2022-02-18T19:06:59Z", + "expirationDateTime": "2022-02-19T19:06:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1bab5d2a-589d-4872-9fb8-604d993be94b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000503-0000000000001088-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5cd74909-9596-4ad6-9563-9faa18da0ab7" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94b40ab9-41f2-4626-ba2d-0adde00e56c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:06:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1bab5d2a-589d-4872-9fb8-604d993be94b", + "lastUpdateDateTime": "2022-02-18T19:06:59Z", + "createdDateTime": "2022-02-18T19:06:59Z", + "expirationDateTime": "2022-02-19T19:06:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1bab5d2a-589d-4872-9fb8-604d993be94b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000504-0000000000001090-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ea556306-ac99-4884-9748-6a670cb9643d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99416d35-48d2-4220-8f0a-a782b8044656", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" + }, + "ResponseBody": { + "jobId": "1bab5d2a-589d-4872-9fb8-604d993be94b", + "lastUpdateDateTime": "2022-02-18T19:07:01Z", + "createdDateTime": "2022-02-18T19:06:59Z", + "expirationDateTime": "2022-02-19T19:06:59Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:01.6978568Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:01.8492404Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1bab5d2a-589d-4872-9fb8-604d993be94b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000505-0000000000001092-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7c81c794-f274-42aa-990c-076312accac0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba91352c-8125-4c37-942a-2fdcd0663942", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "138" + }, + "ResponseBody": { + "jobId": "1bab5d2a-589d-4872-9fb8-604d993be94b", + "lastUpdateDateTime": "2022-02-18T19:07:04Z", + "createdDateTime": "2022-02-18T19:06:59Z", + "expirationDateTime": "2022-02-19T19:06:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:01.6978568Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:01.8492404Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:04.1835757Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1bab5d2a-589d-4872-9fb8-604d993be94b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000506-0000000000001094-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7c654940-df7c-4681-93bd-bb00fcbea711" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9441dcd1-45da-42c4-88c7-3052d9ecc034", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" + }, + "ResponseBody": { + "jobId": "1bab5d2a-589d-4872-9fb8-604d993be94b", + "lastUpdateDateTime": "2022-02-18T19:07:04Z", + "createdDateTime": "2022-02-18T19:06:59Z", + "expirationDateTime": "2022-02-19T19:06:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:01.6978568Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:01.8492404Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:04.1835757Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js deleted file mode 100644 index f786bc7915a5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js +++ /dev/null @@ -1,330 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e78b89bde1ca087eb5fb288827df0898"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0d5763d2-6cc6-45ac-b963-a11f0afb6700', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AljY4N67U6xMk73CSuLWtQc; expires=Mon, 22-Nov-2021 00:46:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrO30MxqVY9EmEnlI7IybKYgHQWUL4lcv0ZAyTJkJJqvbyQuqz6RXtybt_b_kXSe3LXtTd1dog91wBt0tQvWOuuYNlPjUCA7ICBWRbBGdZVliLhzQ_dfNdonlAl7mtXLPjYoDedIdNCRiTvAxPCYrIeLMI_ZYw8c10xkVxmVemmDogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:49 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c64caa61-3fcc-4dcd-8dea-7ea1e65b0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AgKqRNQ2wfxBgd1l_bOIs0I; expires=Mon, 22-Nov-2021 00:46:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2zSlRjv1pGNHKlbaGOiWI06C5MNNbHJRYYsX2vUCfy58uNg9cZhr-Xm8IFwUrPKNsDvuiGE09ekaaAxR5TRIEjr_zBhAjqtJ34w6CI2dT-sf8hZRx5YMo4V-t1f8M6CdqHr5qW_guKOqYhVq9CgaxIuORsSpfVRWptt60zDvo7QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:49 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4809f12c-b728-4dc8-9a9c-c548905e2060&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b465b190300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Apnc2z0xzEVChjt91HOMb48; expires=Mon, 22-Nov-2021 00:46:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:46:49 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b', - 'x-envoy-upstream-service-time', - '389', - 'apim-request-id', - '19d9e31d-e681-4162-9031-c7a5c9209a2d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:50Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '38e4a29a-f64f-45c8-abf3-d6a793b049ce', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:50Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'c789f8da-3f3c-410e-b3e5-6abee5a85b6c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:51Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '7af51d7a-b735-453e-ba78-cec9abdaf47e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:53Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '182', - 'apim-request-id', - '56cc8f22-5a32-431f-ac56-62989d461e8c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:57Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '102', - 'apim-request-id', - '49044727-469f-49e0-a5e7-19804d961804', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:59Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:59.018869Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '232', - 'apim-request-id', - '48b35550-7e1c-46e7-a025-ad5f9815edfe', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:46:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:59Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:59.018869Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '181', - 'apim-request-id', - '42c21aaf-7a8b-4f8b-988a-0e51c16b91c5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:46:59Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:59.018869Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '173', - 'apim-request-id', - 'acbf3bab-6989-4bea-bc18-361059987236', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:47:04Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:59.018869Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:04.0512372Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '409', - 'apim-request-id', - 'c02d5e5a-b8c9-4269-b2b5-280b977b0851', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/35e24e4a-db98-4c35-840f-16f4f00f897b') - .query(true) - .reply(200, {"jobId":"35e24e4a-db98-4c35-840f-16f4f00f897b","lastUpdateDateTime":"2021-10-23T00:47:04Z","createdDateTime":"2021-10-23T00:46:50Z","expirationDateTime":"2021-10-24T00:46:50Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:59.018869Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:46:53.6581387Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:47:04.0512372Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '364', - 'apim-request-id', - 'c2288b2b-c761-45c4-b0e4-9a8fdaebe722', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:47:06 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json new file mode 100644 index 000000000000..b48cad1fe863 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json @@ -0,0 +1,445 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000507-0000000000001097-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b19a91ab-7227-4867-bb16-d2f8cc43c54c" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a523a3b3-ee80-40a1-8b83-e17e3b14d423", + "Date": "Fri, 18 Feb 2022 19:07:05 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef56b62b-3fa0-44a6-ab27-b56d9f226fbb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef56b62b-3fa0-44a6-ab27-b56d9f226fbb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000508-0000000000001099-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2d9cbc56-36b8-49ab-8ffa-deb228d9c830" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "82d63c80-4a20-46a4-8060-4632988fca28", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ef56b62b-3fa0-44a6-ab27-b56d9f226fbb", + "lastUpdateDateTime": "2022-02-18T19:07:05Z", + "createdDateTime": "2022-02-18T19:07:05Z", + "expirationDateTime": "2022-02-19T19:07:05Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef56b62b-3fa0-44a6-ab27-b56d9f226fbb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000509-0000000000001101-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "81fcc6d4-94ab-4aaa-ba2a-667dba9daeeb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6f493d3-1d8a-421a-b52c-02205d8245a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "ef56b62b-3fa0-44a6-ab27-b56d9f226fbb", + "lastUpdateDateTime": "2022-02-18T19:07:05Z", + "createdDateTime": "2022-02-18T19:07:05Z", + "expirationDateTime": "2022-02-19T19:07:05Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef56b62b-3fa0-44a6-ab27-b56d9f226fbb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000510-0000000000001103-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1bc6f50b-018a-41cb-9947-ca1a457be119" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e869171-1efa-4fbb-860f-a2982ba7ff3d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "488" + }, + "ResponseBody": { + "jobId": "ef56b62b-3fa0-44a6-ab27-b56d9f226fbb", + "lastUpdateDateTime": "2022-02-18T19:07:07Z", + "createdDateTime": "2022-02-18T19:07:05Z", + "expirationDateTime": "2022-02-19T19:07:05Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:07.3409185Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:07.323264Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:07.5329169Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ef56b62b-3fa0-44a6-ab27-b56d9f226fbb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000511-0000000000001105-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "256cae58-9568-4ca8-9a89-f8fedb312538" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2a1ec01-ff34-4291-80d1-19ccfc729d66", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:07:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "187" + }, + "ResponseBody": { + "jobId": "ef56b62b-3fa0-44a6-ab27-b56d9f226fbb", + "lastUpdateDateTime": "2022-02-18T19:07:07Z", + "createdDateTime": "2022-02-18T19:07:05Z", + "expirationDateTime": "2022-02-19T19:07:05Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:07.3409185Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:07.323264Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:07:07.5329169Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js deleted file mode 100644 index de9deb833cb8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "312581be23da2744639956ae58b5b5f3"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e0c5d668-f802-4484-bf79-efe3d427b503', - 'x-ms-ests-server', - '2.1.12231.8 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AifPv5B_hwtBgKjZMntT6IM; expires=Wed, 29-Dec-2021 22:47:10 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXNRFHL1MW3SVAgX-xWsJKhe5yxX45LGNYFOO2orr5KffUpBg73ufavC21V6rwNC7nQyChauuhdBis7zebc-Gq865jLE2PxFcakKiIBu1odYHi3faI8N9lszm5zucli-sbyrGyDFdkv46xpeSVhsz-MNyvZSRTI571EYd_UJrOgwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 29 Nov 2021 22:47:09 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '075ac178-3843-43bd-a4bb-cfd1e21d3b01', - 'x-ms-ests-server', - '2.1.12231.9 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AlyQ-NQN8r9Ng5l4QjkLdiU; expires=Wed, 29-Dec-2021 22:47:10 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJb0Wkjwle1wbWXCBbzRacZjuyYVTyox75utHbcKIy2yk1F_7q3mbNtwqq3coO0IBwm8YAkh8_2htu3ySAjF5A9wRBsKdyY8Yp5rISDV32vM61r1ztFbllOnNVX5AMTIN-BIG6Ue-u1U1M-9T_kc3GQ83ClktzR4VrD0pzDMUqRkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 29 Nov 2021 22:47:09 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=328fc9a2-3854-403f-accf-50c2aa6193de&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '075ac178-3843-43bd-a4bb-cfd1e61d3b01', - 'x-ms-ests-server', - '2.1.12231.9 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AuD19KwcXWVDnvRnOvrTVRVz_bg1AQAAAG1PN9kOAAAA; expires=Wed, 29-Dec-2021 22:47:10 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 29 Nov 2021 22:47:09 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":"english"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6742ecfa-5592-40f6-8eea-b02592d8ac4f', - 'x-envoy-upstream-service-time', - '195', - 'apim-request-id', - '584527b8-443b-4ee6-bc3c-0d26b88d2f3e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/6742ecfa-5592-40f6-8eea-b02592d8ac4f') - .query(true) - .reply(200, {"jobId":"6742ecfa-5592-40f6-8eea-b02592d8ac4f","lastUpdateDateTime":"2021-11-29T22:47:10Z","createdDateTime":"2021-11-29T22:47:10Z","expirationDateTime":"2021-11-30T22:47:10Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '0fddbb10-a5b8-4924-9722-c18b3681f2b8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/6742ecfa-5592-40f6-8eea-b02592d8ac4f') - .query(true) - .reply(200, {"jobId":"6742ecfa-5592-40f6-8eea-b02592d8ac4f","lastUpdateDateTime":"2021-11-29T22:47:10Z","createdDateTime":"2021-11-29T22:47:10Z","expirationDateTime":"2021-11-30T22:47:10Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'eb5915dd-4ff9-4b15-bf4e-fbae9faef5a9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/6742ecfa-5592-40f6-8eea-b02592d8ac4f') - .query(true) - .reply(200, {"jobId":"6742ecfa-5592-40f6-8eea-b02592d8ac4f","lastUpdateDateTime":"2021-11-29T22:47:11Z","createdDateTime":"2021-11-29T22:47:10Z","expirationDateTime":"2021-11-30T22:47:10Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '81', - 'apim-request-id', - '22c7d376-29f7-41df-8bc8-d757ddd878cf', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/6742ecfa-5592-40f6-8eea-b02592d8ac4f') - .query(true) - .reply(200, {"jobId":"6742ecfa-5592-40f6-8eea-b02592d8ac4f","lastUpdateDateTime":"2021-11-29T22:47:11Z","createdDateTime":"2021-11-29T22:47:10Z","expirationDateTime":"2021-11-30T22:47:10Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '123', - 'apim-request-id', - 'a3a997c5-5534-462d-9fca-d46d1cb4a63c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json new file mode 100644 index 000000000000..0a03d375acd9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json @@ -0,0 +1,228 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "116", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000649-0000000000001409-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6c0e81fd-36e0-43f2-991f-970d674e3006" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "english" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ebee1e1d-b2af-4e89-bf64-bf46e69c19cc", + "Date": "Fri, 18 Feb 2022 19:09:20 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f62a8e7-45d4-45b4-9610-74d2cc79e253", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f62a8e7-45d4-45b4-9610-74d2cc79e253?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000650-0000000000001411-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "874590fa-2deb-46b3-9da8-aa0fa978416d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c348ce5c-bcfb-4d4d-acf4-177f008ea24b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1f62a8e7-45d4-45b4-9610-74d2cc79e253", + "lastUpdateDateTime": "2022-02-18T19:09:21Z", + "createdDateTime": "2022-02-18T19:09:21Z", + "expirationDateTime": "2022-02-19T19:09:21Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f62a8e7-45d4-45b4-9610-74d2cc79e253?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000651-0000000000001413-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "29a5d972-9786-4c00-811c-a8000372e057" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b22ba0f4-f292-4da1-b1f2-2ee06052725c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "1f62a8e7-45d4-45b4-9610-74d2cc79e253", + "lastUpdateDateTime": "2022-02-18T19:09:21Z", + "createdDateTime": "2022-02-18T19:09:21Z", + "expirationDateTime": "2022-02-19T19:09:21Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f62a8e7-45d4-45b4-9610-74d2cc79e253?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000652-0000000000001415-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "719e0d16-0f3b-4b80-be82-11cf83af306e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3248f67d-104c-49b9-9979-6897a4149a6f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "1f62a8e7-45d4-45b4-9610-74d2cc79e253", + "lastUpdateDateTime": "2022-02-18T19:09:22Z", + "createdDateTime": "2022-02-18T19:09:21Z", + "expirationDateTime": "2022-02-19T19:09:21Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f62a8e7-45d4-45b4-9610-74d2cc79e253?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000653-0000000000001417-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d6081e8e-7202-4c4e-a5d2-5bec5f1861a8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "73b15e67-8092-45dd-ae6e-f65df9e66f8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "1f62a8e7-45d4-45b4-9610-74d2cc79e253", + "lastUpdateDateTime": "2022-02-18T19:09:22Z", + "createdDateTime": "2022-02-18T19:09:21Z", + "expirationDateTime": "2022-02-19T19:09:21Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js deleted file mode 100644 index e7b27e8a381f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js +++ /dev/null @@ -1,271 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0c018911d7b8c915100686d9373b4af8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '28acda90-8315-4221-b1be-37c6d4b0a000', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AiMKESPqDatHn9FeTamt-zU; expires=Mon, 22-Nov-2021 00:49:01 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHx_3MxUdRPZXR6v66vJuYnu7A3ce2qLsQC2N70iO8Ei1-kxK-z-Z1SPRxk_NNloxQqElmBqdzaH7CPUGA7fpyWBP6ozqVwM0nbvJVh5FOeLoH9RrTYWV_su7KmcvZymHwIP1U9HHRa-v5Xwa3MaAhP0kBi8DcfJkNduqEZSOTe8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:01 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15bcfb10500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AlG4LEpNn6JIh3q6Fmjco9Q; expires=Mon, 22-Nov-2021 00:49:01 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrl9DweJ-nWhnkiiMTFlAOVED_dCM502mIl8Ip3zIWAaT7RnryW6pczr1--7nqgfEb2GyHRMpJq7C03HMp436h5IL7eNYtZx0BEr-sdvpCzR1QdNFEVD_J6br5jXj0OQJwVlvC3P5lJItRlSJgPMEsnffqFvCveJXrvsbJsBDnehggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:01 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e10825b6-3143-46c8-bfaa-712d676b7e0e&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a44305950200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AocfH4cIpZpChk7JF58sx_Q; expires=Mon, 22-Nov-2021 00:49:01 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:01 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471', - 'x-envoy-upstream-service-time', - '413', - 'apim-request-id', - 'd41fab42-a389-4efc-9795-0e11c4b9b103', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:02Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - 'f5354f08-5532-44bc-88a0-5d6c7536c920', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:02Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '6edd5d25-0014-4600-af40-52431a696bea', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:02Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'eb07b3b0-f8c1-449c-9d5f-4693f57ab4dd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:05Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '59e7933b-ff67-4ccc-9fa5-e477e64afd4d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:05Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '03bb9f59-4d4e-4ede-b05a-e31d56f9ce30', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:10Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '119', - 'apim-request-id', - 'd7f0de19-93ec-496f-bc9b-0b6de07c3b43', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e719d7e6-f00b-4d2c-b22b-04cbdcbc3471') - .query(true) - .reply(200, {"jobId":"e719d7e6-f00b-4d2c-b22b-04cbdcbc3471","lastUpdateDateTime":"2021-10-23T00:49:10Z","createdDateTime":"2021-10-23T00:49:02Z","expirationDateTime":"2021-10-24T00:49:02Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '87', - 'apim-request-id', - '15655edf-ba25-45b0-a5ec-cb1ae2684e43', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:10 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json new file mode 100644 index 000000000000..db2cbc1196c6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json @@ -0,0 +1,256 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "180", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000593-0000000000001284-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fb0d0123-6e4e-4279-94de-89b6021c2671" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "74010920-dde9-4357-85e6-ecaab7195cb9", + "Date": "Fri, 18 Feb 2022 19:08:40 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4ac2006b-508b-461a-b336-b2e0b9ab6937", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4ac2006b-508b-461a-b336-b2e0b9ab6937?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000594-0000000000001286-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0602d8d2-e064-49f7-92e8-b8d89e5c4e68" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0e177b7-e7e8-43e3-8fbf-cdd678c1bfd0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "4ac2006b-508b-461a-b336-b2e0b9ab6937", + "lastUpdateDateTime": "2022-02-18T19:08:41Z", + "createdDateTime": "2022-02-18T19:08:40Z", + "expirationDateTime": "2022-02-19T19:08:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4ac2006b-508b-461a-b336-b2e0b9ab6937?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000595-0000000000001288-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8653f677-4086-446b-b14d-bcaef5838e13" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6d21f405-5200-4280-a276-f35743d7377b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "jobId": "4ac2006b-508b-461a-b336-b2e0b9ab6937", + "lastUpdateDateTime": "2022-02-18T19:08:41Z", + "createdDateTime": "2022-02-18T19:08:40Z", + "expirationDateTime": "2022-02-19T19:08:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4ac2006b-508b-461a-b336-b2e0b9ab6937?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000596-0000000000001290-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "49fc5803-41e9-4494-ace4-ee77c1146e53" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c1cd5bca-41e5-460a-a846-f0d19dc07d7d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "jobId": "4ac2006b-508b-461a-b336-b2e0b9ab6937", + "lastUpdateDateTime": "2022-02-18T19:08:41Z", + "createdDateTime": "2022-02-18T19:08:40Z", + "expirationDateTime": "2022-02-19T19:08:40Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4ac2006b-508b-461a-b336-b2e0b9ab6937?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000597-0000000000001292-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d091f258-1d2b-4206-be71-b6fc650de6a8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca292b8d-2399-433d-8916-7b32c7ceac31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "4ac2006b-508b-461a-b336-b2e0b9ab6937", + "lastUpdateDateTime": "2022-02-18T19:08:41Z", + "createdDateTime": "2022-02-18T19:08:40Z", + "expirationDateTime": "2022-02-19T19:08:40Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.js deleted file mode 100644 index 6d8d4bef592f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1a6e295946f3b658196c905d15b7c5a4"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7b86c84f-0fd8-4f37-b3eb-0591bb160a00', - 'x-ms-ests-server', - '2.1.12231.9 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ai2W8xf6Rd1OtGNnBkEuPbE; expires=Wed, 29-Dec-2021 22:47:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYJk1CCvgmwXWdaJh8y8JMZhrA_SqFSke1PIek_8dWpC0PBDx3Q35b0KtFR4vaHqY7JiPJCva_PPNonStE8E4a3P51qlrG-zDORU54qVlZO_DYwFxpkVjM-7_600vlUtpIdBW7F5tGt0I7X8x45Y3Xwt04rl5JYszCzU8MwPOgfUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '75c2d582-0c7e-4d1c-9e86-63bf05c31900', - 'x-ms-ests-server', - '2.1.12231.9 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Av98GTBvqTVOsMUPvo-afWU; expires=Wed, 29-Dec-2021 22:47:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-sS7LVuwZ1bdAT0dG11wh8QM8CnQtrH1odkG0zicIhXNC8xKnyEzVsa7JQvoADg3cuA-rG8_F0jF7Tmc3SHk9ZugOe86C_J__LQ1LcQbNFwNNr-JmPhNtFPtzZWYBV9wxBne-XMC5kiBLaXnocEsozZZM1jETrbMjHvj2Ev7a0ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=98bd84fd-1b21-445f-9f4c-5310f6f0b51a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '075ac178-3843-43bd-a4bb-cfd13f1e3b01', - 'x-ms-ests-server', - '2.1.12231.9 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ao0xjZaq1EZMg9-S1Uo0BQQ; expires=Wed, 29-Dec-2021 22:47:13 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"3","text":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/684024a8-2d04-40a9-93bc-23a066f857c9', - 'x-envoy-upstream-service-time', - '126', - 'apim-request-id', - '71b6c17c-fcdd-4f7e-ab3d-a32ea4d7d9bd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/684024a8-2d04-40a9-93bc-23a066f857c9') - .query(true) - .reply(200, {"jobId":"684024a8-2d04-40a9-93bc-23a066f857c9","lastUpdateDateTime":"2021-11-29T22:47:13Z","createdDateTime":"2021-11-29T22:47:13Z","expirationDateTime":"2021-11-30T22:47:13Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '53416b53-ee54-424c-9377-2cdec7e149c0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/684024a8-2d04-40a9-93bc-23a066f857c9') - .query(true) - .reply(200, {"jobId":"684024a8-2d04-40a9-93bc-23a066f857c9","lastUpdateDateTime":"2021-11-29T22:47:13Z","createdDateTime":"2021-11-29T22:47:13Z","expirationDateTime":"2021-11-30T22:47:13Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '8913eea1-bca3-4a49-b532-19231f24fa37', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/684024a8-2d04-40a9-93bc-23a066f857c9') - .query(true) - .reply(200, {"jobId":"684024a8-2d04-40a9-93bc-23a066f857c9","lastUpdateDateTime":"2021-11-29T22:47:15Z","createdDateTime":"2021-11-29T22:47:13Z","expirationDateTime":"2021-11-30T22:47:13Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[],"relations":[],"warnings":[{"code":"DocumentTruncated","message":"Document is large and must be split to be processed; relations across splits may not be caught by the model"}]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '50', - 'apim-request-id', - '23f89d32-9483-4e67-8bd5-c3d6a102f31a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/684024a8-2d04-40a9-93bc-23a066f857c9') - .query(true) - .reply(200, {"jobId":"684024a8-2d04-40a9-93bc-23a066f857c9","lastUpdateDateTime":"2021-11-29T22:47:15Z","createdDateTime":"2021-11-29T22:47:13Z","expirationDateTime":"2021-11-30T22:47:13Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[],"relations":[],"warnings":[{"code":"DocumentTruncated","message":"Document is large and must be split to be processed; relations across splits may not be caught by the model"}]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '53', - 'apim-request-id', - '75acb099-9302-4bb2-b580-5888e0f4e576', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:15 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json new file mode 100644 index 000000000000..3808a0630580 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json @@ -0,0 +1,201 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "5157", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000654-0000000000001420-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8635a304-7bef-4794-8127-4e15c96ee694" + }, + "RequestBody": { + "documents": [ + { + "id": "3", + "text": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a1063fed-5299-496c-9718-b9b4d8f0b018", + "Date": "Fri, 18 Feb 2022 19:09:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6dbdf713-d1aa-4111-a60e-2bdf56eff8db", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6dbdf713-d1aa-4111-a60e-2bdf56eff8db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000655-0000000000001422-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a8ef9510-0af7-471a-87fa-621f1d830134" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c3fae05-49c6-4083-a6c1-26ab85ccc98e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "jobId": "6dbdf713-d1aa-4111-a60e-2bdf56eff8db", + "lastUpdateDateTime": "2022-02-18T19:09:24Z", + "createdDateTime": "2022-02-18T19:09:24Z", + "expirationDateTime": "2022-02-19T19:09:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6dbdf713-d1aa-4111-a60e-2bdf56eff8db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000656-0000000000001424-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9698c333-3202-4797-a17f-8ac149adc1eb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "226e98f4-075a-4ee8-b7f9-ec8e1bb9a3a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6dbdf713-d1aa-4111-a60e-2bdf56eff8db", + "lastUpdateDateTime": "2022-02-18T19:09:24Z", + "createdDateTime": "2022-02-18T19:09:24Z", + "expirationDateTime": "2022-02-19T19:09:24Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6dbdf713-d1aa-4111-a60e-2bdf56eff8db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000657-0000000000001426-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1a0c0fa4-8d64-49b4-9de0-c6d5ddeb1fa2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89a0674b-afa9-4403-b7ba-f1f50e491723", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "jobId": "6dbdf713-d1aa-4111-a60e-2bdf56eff8db", + "lastUpdateDateTime": "2022-02-18T19:09:26Z", + "createdDateTime": "2022-02-18T19:09:24Z", + "expirationDateTime": "2022-02-19T19:09:24Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6dbdf713-d1aa-4111-a60e-2bdf56eff8db?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000658-0000000000001428-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "053b47b9-4489-45d8-bc27-a94e64cc2890" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1d9dca8-cb68-4c04-8a72-04d0f4d42315", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "6dbdf713-d1aa-4111-a60e-2bdf56eff8db", + "lastUpdateDateTime": "2022-02-18T19:09:26Z", + "createdDateTime": "2022-02-18T19:09:24Z", + "expirationDateTime": "2022-02-19T19:09:24Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.js deleted file mode 100644 index a92e170e6608..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.js +++ /dev/null @@ -1,151 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "046726cf9dbc05307b6526966952ecfa"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7e50bb31-9c18-4f13-94fc-91629b042500', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ApjR9O69QSpNiC8As8q2SMw; expires=Mon, 22-Nov-2021 00:49:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrs6WNIofWm_w9eh8pq8Onz4v3_pQhFrfbUbj6FHIbmCBZApo6tkPvdJpbYEBVSJneKXcWnk3sbnbJrtSuL-IO1HUGBvd3tf433o4w-dXqJfVMlpY8oYB13VMEJUlqLPE29XtX1pyYfRSJJ-3WvQyi3nQGQ9EQrRjmc4d-h5lqWcYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f0311cc0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AqPV7oeZmQRHkpf8ICXfLYA; expires=Mon, 22-Nov-2021 00:49:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0oYcLTj1-MKVs06eeEZvwkXRvW0lZJO5gTqYuWNvOhT7_rGHazq-NMMEeNYGe-Ma4WMwrDDftL_qDGLwFUc6VKXE7e3oSPJCMNIAWombVMMlrGqbmpowcvf1-EJgBPXLj6rl46LA_qvPu1ZkTlsIIZirOu-1NcFatkOtyXOYEkwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=76b48887-1f0e-4c91-bd07-f66c023f26ee&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec7967250600', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AljWRM9r5RtPiJTJSfMczHc; expires=Mon, 22-Nov-2021 00:49:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8585fd74-8b2d-4b29-80ac-877f9ea32b17', - 'x-envoy-upstream-service-time', - '192', - 'apim-request-id', - 'ceb46f6e-40ad-43f6-80bc-98d159dcbe11', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/8585fd74-8b2d-4b29-80ac-877f9ea32b17') - .query(true) - .reply(200, {"jobId":"8585fd74-8b2d-4b29-80ac-877f9ea32b17","lastUpdateDateTime":"2021-10-23T00:49:51Z","createdDateTime":"2021-10-23T00:49:50Z","expirationDateTime":"2021-10-24T00:49:50Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '30c3ae07-57f6-46f6-906a-5e26c85f989e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.json new file mode 100644 index 000000000000..a9420160e62d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.json @@ -0,0 +1,77 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000660-0000000000001434-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f6bbf059-48aa-4500-81f2-b40719f908ba" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "18499ad0-12dc-4651-a5ce-369d9ad4db2d", + "Date": "Fri, 18 Feb 2022 19:09:28 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7b1f5647-5fe0-47ef-b646-70a84afd980b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7b1f5647-5fe0-47ef-b646-70a84afd980b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000661-0000000000001436-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "59216a87-7b14-4011-8952-5515c29d3e81" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e6bbc7d-03ae-40c0-9f62-f8cc21706c45", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "7b1f5647-5fe0-47ef-b646-70a84afd980b", + "lastUpdateDateTime": "2022-02-18T19:09:28Z", + "createdDateTime": "2022-02-18T19:09:28Z", + "expirationDateTime": "2022-02-19T19:09:28Z", + "status": "running", + "errors": [] + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.js deleted file mode 100644 index 004fab87aea0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "692c28f4e7d96a9f71e04224dcbab4ad"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b86b1524-1a6e-4b71-ae31-955fc5a8b200', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=At5_VXkoL8NOrjVhY1yMrdU; expires=Mon, 22-Nov-2021 00:49:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrrSiEkBiYTfhc_GThY0nxfCCDE6_pdevUUWS4oUhTzyIt08HQbRtgImDmCFUQ9cDGH2FcXK2L02x9iDAqAZo9zi7SsboZ8Z0vyCEqmL2-34w-dL9YwOhZI60fifb5zhEYy3NKxCGDZ3FT6ML2pY-pXvp7O6MGII64HnlN3NBy0YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:15 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f031fc90200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AprD5yeb3mhIjm8p2hiCnrs; expires=Mon, 22-Nov-2021 00:49:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2kfU5GqED0izBxHKNQmcXBdLiLfRBSDrN6LBUZWZe8gv2EfcKbZQirAce3SPM-vmFUSF46dI97d4sgMtbL5EaOzM6b42OSq1UiRvsyRDuqVdrcLB6LO_Q0-O7kk2x9X6KOTOoXgZXTjBhlNETDIi6Zfx2UCA-eWBT9EuDc2ZIEQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:15 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ebe40754-25f2-4ed6-a419-97d431c97f08&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b76b30500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AvCAaTKmi-pFs9AXjyH6WAg; expires=Mon, 22-Nov-2021 00:49:15 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:15 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"This won't actually create a warning :'("}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b6e6dd62-e476-4407-9d16-5bf6cffb49f4', - 'x-envoy-upstream-service-time', - '304', - 'apim-request-id', - '101619ee-d9cf-4543-bcd1-e0d937200e46', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b6e6dd62-e476-4407-9d16-5bf6cffb49f4') - .query(true) - .reply(200, {"jobId":"b6e6dd62-e476-4407-9d16-5bf6cffb49f4","lastUpdateDateTime":"2021-10-23T00:49:16Z","createdDateTime":"2021-10-23T00:49:15Z","expirationDateTime":"2021-10-24T00:49:15Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '67ed79c7-f6e6-4be4-93b6-2e63576e55df', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b6e6dd62-e476-4407-9d16-5bf6cffb49f4') - .query(true) - .reply(200, {"jobId":"b6e6dd62-e476-4407-9d16-5bf6cffb49f4","lastUpdateDateTime":"2021-10-23T00:49:16Z","createdDateTime":"2021-10-23T00:49:15Z","expirationDateTime":"2021-10-24T00:49:15Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - '29dcdb67-97e1-4d53-811d-df424e767b11', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b6e6dd62-e476-4407-9d16-5bf6cffb49f4') - .query(true) - .reply(200, {"jobId":"b6e6dd62-e476-4407-9d16-5bf6cffb49f4","lastUpdateDateTime":"2021-10-23T00:49:16Z","createdDateTime":"2021-10-23T00:49:15Z","expirationDateTime":"2021-10-24T00:49:15Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '138', - 'apim-request-id', - 'cd062e52-dfab-4a8b-9075-9e05f07b4a38', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b6e6dd62-e476-4407-9d16-5bf6cffb49f4') - .query(true) - .reply(200, {"jobId":"b6e6dd62-e476-4407-9d16-5bf6cffb49f4","lastUpdateDateTime":"2021-10-23T00:49:16Z","createdDateTime":"2021-10-23T00:49:15Z","expirationDateTime":"2021-10-24T00:49:15Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '75', - 'apim-request-id', - '1cce1582-d5e1-4f44-b952-c7f5b0440bf6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:18 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.json new file mode 100644 index 000000000000..3d50cce2c7bc --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.json @@ -0,0 +1,191 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "76", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000600-0000000000001301-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "02f88b14-4be6-4266-a4d7-b14afe5e3616" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This won\u0027t actually create a warning :\u0027(" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "eb36ebc7-97c5-41e4-b973-b7a52e35ff2a", + "Date": "Fri, 18 Feb 2022 19:08:45 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c51860ab-5db3-4ad9-93a4-7d7cedf0fad1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c51860ab-5db3-4ad9-93a4-7d7cedf0fad1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000601-0000000000001303-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "59f1303e-c3f8-45f2-a1d8-be3cbb127272" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e0cb9e65-d395-4741-80c9-82f0a540ff26", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c51860ab-5db3-4ad9-93a4-7d7cedf0fad1", + "lastUpdateDateTime": "2022-02-18T19:08:46Z", + "createdDateTime": "2022-02-18T19:08:45Z", + "expirationDateTime": "2022-02-19T19:08:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c51860ab-5db3-4ad9-93a4-7d7cedf0fad1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000602-0000000000001305-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f10f1181-1077-4793-9f8d-ad4b8b328aa9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "38266d63-05c7-4b7a-addd-5c86281e6261", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "c51860ab-5db3-4ad9-93a4-7d7cedf0fad1", + "lastUpdateDateTime": "2022-02-18T19:08:46Z", + "createdDateTime": "2022-02-18T19:08:45Z", + "expirationDateTime": "2022-02-19T19:08:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c51860ab-5db3-4ad9-93a4-7d7cedf0fad1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000603-0000000000001307-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "611198d5-656d-4d9e-a2bb-7de9cdfe44d5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0a3dc5e6-52e0-42ca-8753-d7e4eff90331", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "c51860ab-5db3-4ad9-93a4-7d7cedf0fad1", + "lastUpdateDateTime": "2022-02-18T19:08:46Z", + "createdDateTime": "2022-02-18T19:08:45Z", + "expirationDateTime": "2022-02-19T19:08:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c51860ab-5db3-4ad9-93a4-7d7cedf0fad1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000604-0000000000001309-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a745ca56-354d-46a5-a128-016ea394a825" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b004e354-7db3-41d0-a497-000f8e18223e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "c51860ab-5db3-4ad9-93a4-7d7cedf0fad1", + "lastUpdateDateTime": "2022-02-18T19:08:46Z", + "createdDateTime": "2022-02-18T19:08:45Z", + "expirationDateTime": "2022-02-19T19:08:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js deleted file mode 100644 index e0d3bbb92a56..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f3f46cab08b3670e4445e7d19a63d3c5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '6ede2c58-1e8e-43aa-b513-46f7b5d87000', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AjufuaREUhpFgaa5qLtUhaw; expires=Mon, 22-Nov-2021 00:49:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYfxkMqTPy361kgkNc5vo1JYzYar0rXAzd9cFtdWKaTM5McAxEr5B2JgmGgQzeuwytJn_-VzeMP2D5ueE2y3hq1ne-65eMsFji5ve4jKUd4dPwKqeOw83w20iV9aIhMnccJND9pbMec1xp9F9PJf_TxjTiBnHBUQxSaNp14AMuX0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29b7d220d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ar-8rkmjbQVEnkcEA2qU7NE; expires=Mon, 22-Nov-2021 00:49:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrOKHAiC4BERg1AMXqBwBZSNc3KDfNX-32qvRMPAaPthe4w0khlzuIhJhw49CI4cmY3oiseGt5oWBx4oeOVDsFVFuLOn63VkWGS1gDiTSfOwnLc04VTBXT-YOUm9aQySR04iz4E7ImaVW-p5Q-5xz_zGYtxJoQsgI5yBZHm1ltPVMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=e9577d5c-e167-4394-9e7d-63824bf28bdf&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b465b2e0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhUvdXzkHtNBlARijWKvshU; expires=Mon, 22-Nov-2021 00:49:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"hello world"},{"id":"1","text":"I did not like the hotel we stayed at."}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Request contains duplicated Ids. Make sure each document has a unique Id."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - '075bc10a-2c50-4f13-844e-d0aede5de539', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json new file mode 100644 index 000000000000..ff875245c0e8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json @@ -0,0 +1,52 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "106", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000659-0000000000001431-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ebfb0014-5fbd-4b4c-bb15-9c96a72bbe95" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "hello world" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at." + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "36351a7c-c189-4bba-bd37-329e14349fc5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Request contains duplicated Ids. Make sure each document has a unique Id." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js deleted file mode 100644 index 684bf5a2107e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6c84b95328582df279435043ada9d912"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '19dde768-69ec-442f-bf8a-f4ab062f1e00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AoqBbT7IOLFPthtPDmCgG3A; expires=Mon, 22-Nov-2021 00:48:35 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrlyhjo0aenZRC2tNOO20AtkTAwvvoaiEGBJhRDvqvldhFSQtUxhqCoFnT-kAG0l_wV1M9P0TbjIPW-H45WREqSljAUYfHA-CPN4jl1dZyHnHqGcUTe2juUzIZRljXz0ko7pdcsG8r659tkiwNnDUmbMzwSZxqMcW4pGfeX66LCMAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:34 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f9663370c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AiOLqXwU0sVLjBZNT2frmzs; expires=Mon, 22-Nov-2021 00:48:35 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcA3SLJ87FgXOu3mJZQi3Wh6aYN0CBU94lt6dwf1oV1LnFKZRWpvIOxQH1nf8p6qEoU5TpF-Xv_fM9XEyfgHaqjsz-5cBS1ZNcZ1bd17krY1oXjQ3IwY4nJo2MjTDKHlUjjZBIYHrT4hEGxMNREPhgUne0V_eKblCzERHihvWR2YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:35 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=6ba00f88-faca-4b09-a7d0-48ca43977710&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443aa920200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnGgFlbmP9xMrWAdRPVMMIw; expires=Mon, 22-Nov-2021 00:48:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:35 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"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"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/8434252d-469b-45f4-8411-b8b72913f0b0', - 'x-envoy-upstream-service-time', - '154', - 'apim-request-id', - 'a465fafc-e485-4705-aea4-2e1f5e32614e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/8434252d-469b-45f4-8411-b8b72913f0b0') - .query(true) - .reply(200, {"jobId":"8434252d-469b-45f4-8411-b8b72913f0b0","lastUpdateDateTime":"2021-10-23T00:48:36Z","createdDateTime":"2021-10-23T00:48:36Z","expirationDateTime":"2021-10-24T00:48:36Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '3a12c1f6-d69c-4429-ae98-7c308f9e658d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/8434252d-469b-45f4-8411-b8b72913f0b0') - .query(true) - .reply(200, {"jobId":"8434252d-469b-45f4-8411-b8b72913f0b0","lastUpdateDateTime":"2021-10-23T00:48:36Z","createdDateTime":"2021-10-23T00:48:36Z","expirationDateTime":"2021-10-24T00:48:36Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '6210ec50-bcc0-4d17-af2e-d05646060a1c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/8434252d-469b-45f4-8411-b8b72913f0b0') - .query(true) - .reply(200, {"jobId":"8434252d-469b-45f4-8411-b8b72913f0b0","lastUpdateDateTime":"2021-10-23T00:48:36Z","createdDateTime":"2021-10-23T00:48:36Z","expirationDateTime":"2021-10-24T00:48:36Z","status":"succeeded","errors":[],"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,"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":"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":"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":1,"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":"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_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","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":"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.9,"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,"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":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '66', - 'apim-request-id', - '5f27d6c3-7f3b-4bed-99f0-3d30afaf2220', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/8434252d-469b-45f4-8411-b8b72913f0b0') - .query(true) - .reply(200, {"jobId":"8434252d-469b-45f4-8411-b8b72913f0b0","lastUpdateDateTime":"2021-10-23T00:48:36Z","createdDateTime":"2021-10-23T00:48:36Z","expirationDateTime":"2021-10-24T00:48:36Z","status":"succeeded","errors":[],"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,"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":"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":"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":1,"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":"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_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","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":"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.9,"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,"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":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '121', - 'apim-request-id', - '7a65559e-2a2b-4304-8d28-f1a6b087f781', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.json new file mode 100644 index 000000000000..c9d3f6ee5552 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.json @@ -0,0 +1,1574 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000578-0000000000001251-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d2480970-9d15-463a-8fa3-176a3e91a506" + }, + "RequestBody": { + "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" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "90609454-76d8-4bdb-b504-b015c1d43c79", + "Date": "Fri, 18 Feb 2022 19:08:28 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c1221ebc-ea3a-4423-b651-780806304a95", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c1221ebc-ea3a-4423-b651-780806304a95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000579-0000000000001253-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fb1b7f08-a07b-4107-9618-f304672f8f33" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90d57737-7cdf-4163-b8b1-6b8019ac63bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c1221ebc-ea3a-4423-b651-780806304a95", + "lastUpdateDateTime": "2022-02-18T19:08:28Z", + "createdDateTime": "2022-02-18T19:08:28Z", + "expirationDateTime": "2022-02-19T19:08:28Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c1221ebc-ea3a-4423-b651-780806304a95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000580-0000000000001255-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "78c3c695-89d9-4a67-8560-65fbf815d11e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f2d7a40-2114-4f89-abeb-419328bc6dd1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "c1221ebc-ea3a-4423-b651-780806304a95", + "lastUpdateDateTime": "2022-02-18T19:08:28Z", + "createdDateTime": "2022-02-18T19:08:28Z", + "expirationDateTime": "2022-02-19T19:08:28Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c1221ebc-ea3a-4423-b651-780806304a95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000581-0000000000001257-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6a5d9958-3a9f-4026-a353-620838765696" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "763ea747-d7a3-4473-a640-93f85db7424d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:30 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": "c1221ebc-ea3a-4423-b651-780806304a95", + "lastUpdateDateTime": "2022-02-18T19:08:29Z", + "createdDateTime": "2022-02-18T19:08:28Z", + "expirationDateTime": "2022-02-19T19:08:28Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c1221ebc-ea3a-4423-b651-780806304a95?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000582-0000000000001259-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "915ed2c8-3830-4c0b-b90a-54f0ae3d6854" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c8f3df8-d5df-478a-9c55-72d3da649b73", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "c1221ebc-ea3a-4423-b651-780806304a95", + "lastUpdateDateTime": "2022-02-18T19:08:29Z", + "createdDateTime": "2022-02-18T19:08:28Z", + "expirationDateTime": "2022-02-19T19:08:28Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js deleted file mode 100644 index bd20cc8e6073..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6197be518bc787450217d0b89ab9001b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '03197dad-65e0-4a7d-a7ed-28c33b082100', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AoCggywMnI5In64df0mdDdk; expires=Mon, 22-Nov-2021 00:49:57 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_X-CWULBGN99x5Wc5b90mv4h1nT95Y88kAeyZ0Wf1A3qsRfDTBzFZUqnBm-oHMobWWaGEJVgSsjgPtWys8a_XrpudWI1K9cfA-0-dtYSnWK_Ap5xLIn84FnTGpmxMT2ZMXCUb5uePymkXes21KqOlGiSqCYBvKG_YWdH-xpE9-ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:57 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b29b80500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Au8vZS64fPlLkNqBCGR2JZ8; expires=Mon, 22-Nov-2021 00:49:57 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAl88Jb_eMTLQ6StzxMdBI0yo-e0eG-09jGV0Fr_hquXAdauw3eX7imGJ3zDe2GlRPCrOruMTEGhWXgjchXwSkuik615AInaLWRpM0Q_7o2Y2Z9GxFNfzoDjp9iFJ5aNZ1jGp2UpEODkvOcRJZk4m1UFIScftYQ0MMjHXFXK0SSEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:57 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5e179ffe-3ddd-426e-a0a0-c3a2b4073561&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b2fb80500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aqpqk-i_otJDln5E06jhMs0; expires=Mon, 22-Nov-2021 00:49:57 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:57 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d', - 'x-envoy-upstream-service-time', - '133', - 'apim-request-id', - '7f50e52a-94ed-4e53-88a8-0948b30dfd42', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d') - .query(true) - .reply(200, {"jobId":"4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d","lastUpdateDateTime":"2021-10-23T00:49:57Z","createdDateTime":"2021-10-23T00:49:57Z","expirationDateTime":"2021-10-24T00:49:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'c9b4db1c-41b7-4505-8e74-4a76f071ccd1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d') - .query(true) - .reply(200, {"jobId":"4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d","lastUpdateDateTime":"2021-10-23T00:49:57Z","createdDateTime":"2021-10-23T00:49:57Z","expirationDateTime":"2021-10-24T00:49:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '628abb94-6494-4e31-8b31-db78cb73056b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d') - .query(true) - .reply(200, {"jobId":"4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d","lastUpdateDateTime":"2021-10-23T00:49:58Z","createdDateTime":"2021-10-23T00:49:57Z","expirationDateTime":"2021-10-24T00:49:57Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '63', - 'apim-request-id', - '6e6ca5b4-05d5-403f-ac2e-9c82eb0b5185', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d') - .query(true) - .reply(200, {"jobId":"4ddffc9b-c8eb-428b-ae6b-297ec4ecce8d","lastUpdateDateTime":"2021-10-23T00:49:58Z","createdDateTime":"2021-10-23T00:49:57Z","expirationDateTime":"2021-10-24T00:49:57Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '55', - 'apim-request-id', - 'd05ad2e7-7d13-4fe5-a449-c56feceb4892', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:59 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json new file mode 100644 index 000000000000..d639c1870f3d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json @@ -0,0 +1,454 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000671-0000000000001459-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d7b04473-e2ff-45ac-9352-e7092766a10e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ae3e2f4f-ff9b-4571-9043-436b5c3c2cd2", + "Date": "Fri, 18 Feb 2022 19:09:35 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bf66aa19-5336-4f46-9344-0f8d7f95e018", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bf66aa19-5336-4f46-9344-0f8d7f95e018?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000672-0000000000001461-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a9e25321-c377-4002-81e4-eb22b7aefaeb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "362b67fb-02c2-4fe1-b14b-f644501847ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "bf66aa19-5336-4f46-9344-0f8d7f95e018", + "lastUpdateDateTime": "2022-02-18T19:09:36Z", + "createdDateTime": "2022-02-18T19:09:36Z", + "expirationDateTime": "2022-02-19T19:09:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bf66aa19-5336-4f46-9344-0f8d7f95e018?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000673-0000000000001463-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f17d565a-2a76-4ffd-9b75-e18c60dfab1a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "91637316-4286-4a3f-b78c-f724ba34f2c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "bf66aa19-5336-4f46-9344-0f8d7f95e018", + "lastUpdateDateTime": "2022-02-18T19:09:36Z", + "createdDateTime": "2022-02-18T19:09:36Z", + "expirationDateTime": "2022-02-19T19:09:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bf66aa19-5336-4f46-9344-0f8d7f95e018?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000674-0000000000001465-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4b40b79e-4c0c-4126-b2a2-e374bc83117f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "40cafad9-839c-45c3-9c9d-f8e3234370a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "bf66aa19-5336-4f46-9344-0f8d7f95e018", + "lastUpdateDateTime": "2022-02-18T19:09:37Z", + "createdDateTime": "2022-02-18T19:09:36Z", + "expirationDateTime": "2022-02-19T19:09:36Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/bf66aa19-5336-4f46-9344-0f8d7f95e018?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000675-0000000000001467-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b85f01e5-d1ad-41bb-a282-50696f82486b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b38335f0-6972-49df-b606-3e8bd4d700b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "bf66aa19-5336-4f46-9344-0f8d7f95e018", + "lastUpdateDateTime": "2022-02-18T19:09:37Z", + "createdDateTime": "2022-02-18T19:09:36Z", + "expirationDateTime": "2022-02-19T19:09:36Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js deleted file mode 100644 index ff33b0fbb385..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b05b4bf7009369b70b036897b144ee54"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993e5f210d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AjU9J1Y5mG1Ho-54n6xRLLc; expires=Mon, 22-Nov-2021 00:49:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-D1DUnuOmeg7awO0lGJlF37mM2fx3TXfNVkkX0dsu5fJJmYqfhiGxX9_uV09i1UQivLMCIhcpCtwko8KNB7a4j4gzG1bOavS4ZkxAOWIInE6WXCJnHoeckOFTczBSCks-7AtYM-Jnw3CZ7C7KrdMXUWc4pVt0a8s6dV3kvygOc0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:54 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8f0cf73f-2000-44a4-89ce-f29be9220d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AtweSaO0RTBHpFrQq9QG0fA; expires=Mon, 22-Nov-2021 00:49:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNykoLlyRDbAqPX4fPDqrVTCA_9piKf1cuu687p-nkMM6bwrGNeVBO-GTmWWMyEZekKT0aJtHZtqEos--aP1gDRto2muxdklpHBI3Gg4jRkxjgBEB3n0R0Ol3GXJGvsWQqNG_rX7qKUjgYHZNK_MP5R6t5fZT7bp8bXuaJk3jgSwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:54 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=fbca47bc-4c2f-478f-99e1-e7a231163f8b&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e0bb70300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AiMpx3C-2JRMpXJ7ebOygKQ; expires=Mon, 22-Nov-2021 00:49:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:54 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/954a3633-f711-40a8-b2b6-50ef44836334', - 'x-envoy-upstream-service-time', - '167', - 'apim-request-id', - 'cedff088-5e97-48f8-97a0-1c1d9ef01dc7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/954a3633-f711-40a8-b2b6-50ef44836334') - .query(true) - .reply(200, {"jobId":"954a3633-f711-40a8-b2b6-50ef44836334","lastUpdateDateTime":"2021-10-23T00:49:54Z","createdDateTime":"2021-10-23T00:49:54Z","expirationDateTime":"2021-10-24T00:49:54Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - 'fa4bf159-7e71-409e-8d6c-90e418606111', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/954a3633-f711-40a8-b2b6-50ef44836334') - .query(true) - .reply(200, {"jobId":"954a3633-f711-40a8-b2b6-50ef44836334","lastUpdateDateTime":"2021-10-23T00:49:54Z","createdDateTime":"2021-10-23T00:49:54Z","expirationDateTime":"2021-10-24T00:49:54Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'a830933d-6806-41d4-9e8b-b6d0cd6b95d1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/954a3633-f711-40a8-b2b6-50ef44836334') - .query(true) - .reply(200, {"jobId":"954a3633-f711-40a8-b2b6-50ef44836334","lastUpdateDateTime":"2021-10-23T00:49:55Z","createdDateTime":"2021-10-23T00:49:54Z","expirationDateTime":"2021-10-24T00:49:54Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '58', - 'apim-request-id', - '78177823-ca4b-44ee-af90-70e88b982e04', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:56 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/954a3633-f711-40a8-b2b6-50ef44836334') - .query(true) - .reply(200, {"jobId":"954a3633-f711-40a8-b2b6-50ef44836334","lastUpdateDateTime":"2021-10-23T00:49:55Z","createdDateTime":"2021-10-23T00:49:54Z","expirationDateTime":"2021-10-24T00:49:54Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '67', - 'apim-request-id', - 'a3b4f3a8-048d-4f68-ba4a-e7ce26c4941a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:56 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json new file mode 100644 index 000000000000..5dfe411f0dae --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json @@ -0,0 +1,454 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000666-0000000000001448-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "09eb5067-cc2d-47d3-abd8-e01a315da942" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4dd9e9cd-a8de-4887-8762-eb93e9695a6d", + "Date": "Fri, 18 Feb 2022 19:09:32 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7dba20b9-31eb-4e04-bc3a-fedfe0772561", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7dba20b9-31eb-4e04-bc3a-fedfe0772561?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000667-0000000000001450-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4a453e50-ec54-44fe-9b7b-7dc0b3f96b30" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01584172-f7e1-4e07-a417-afcc082f3bfb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "7dba20b9-31eb-4e04-bc3a-fedfe0772561", + "lastUpdateDateTime": "2022-02-18T19:09:32Z", + "createdDateTime": "2022-02-18T19:09:32Z", + "expirationDateTime": "2022-02-19T19:09:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7dba20b9-31eb-4e04-bc3a-fedfe0772561?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000668-0000000000001452-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bebed3b7-6f57-4a6e-a57c-5d9a50c0ee74" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cbc3e8c9-130a-4a8e-b640-37fccb06508e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "7dba20b9-31eb-4e04-bc3a-fedfe0772561", + "lastUpdateDateTime": "2022-02-18T19:09:32Z", + "createdDateTime": "2022-02-18T19:09:32Z", + "expirationDateTime": "2022-02-19T19:09:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7dba20b9-31eb-4e04-bc3a-fedfe0772561?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000669-0000000000001454-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dc3247f9-99af-4005-9722-bd4dfddca965" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a92fc8d-ad75-4cd7-af7a-e4b646844905", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "jobId": "7dba20b9-31eb-4e04-bc3a-fedfe0772561", + "lastUpdateDateTime": "2022-02-18T19:09:33Z", + "createdDateTime": "2022-02-18T19:09:32Z", + "expirationDateTime": "2022-02-19T19:09:32Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7dba20b9-31eb-4e04-bc3a-fedfe0772561?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000670-0000000000001456-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "358cd1c4-360c-463b-89ee-4d9ecbfa6fdc" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d173aa3e-4e89-4d5f-9bc6-ac7769c539d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "7dba20b9-31eb-4e04-bc3a-fedfe0772561", + "lastUpdateDateTime": "2022-02-18T19:09:33Z", + "createdDateTime": "2022-02-18T19:09:32Z", + "expirationDateTime": "2022-02-19T19:09:32Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js deleted file mode 100644 index 34331b84a242..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "49bec9b10a9cab68dfc05bc1e2e6ed68"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4f5264f0-12aa-4179-a2aa-4ec4bf146300', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkD92dEFVoRCsfosojxIY1U; expires=Mon, 22-Nov-2021 00:48:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVRz5lHCKZ2nPAFySxTuoMGfpqOlDCNit1sd1r95JxklMb3satRrb1ECTm-Zp0LxHP4tAGaAy7un3Yo5SjnrCprk3AnGgbACVdMILbzWRh-GR9nmEeK8B-U6xMsfQeo7JaojftHzcP6YB0jXgTR6KyUXVZLETc7p7cyfl22EvgW4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:37 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f03e8c50200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Aly8iZAkU_BCmgYQVGyRKcY; expires=Mon, 22-Nov-2021 00:48:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrphTr4j8UZGT65-OPKDnKJaJQcf-JF5a2OCDPRV5ZEV9hm58wlDqeVqnGOIgvGma1kwddbhdJGcJ-Mx-NYVrs8_NhQnSiXR1YrWeyGQXDIWMLqCnDdSbB2ffKvHvx0wRdxBjccKZLEZe553X9sazHzq-rOXxVyS7TwHIUGVmhm74gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:38 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0c71ce48-b31d-48c2-8e5c-542d4c56e1f1&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '09364d5f-a8b6-4b54-821f-993ee81a0d00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AkboJCi6xJRLgBgg6FNYeLU; expires=Mon, 22-Nov-2021 00:48:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:38 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/019a9b69-886f-4102-aba3-a161362ee491', - 'x-envoy-upstream-service-time', - '205', - 'apim-request-id', - '805c980a-f060-4731-9392-df17bfe4d6b0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/019a9b69-886f-4102-aba3-a161362ee491') - .query(true) - .reply(200, {"jobId":"019a9b69-886f-4102-aba3-a161362ee491","lastUpdateDateTime":"2021-10-23T00:48:39Z","createdDateTime":"2021-10-23T00:48:39Z","expirationDateTime":"2021-10-24T00:48:39Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'f7e7125e-0f60-43ad-b4a0-cdf76c9cbcfb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/019a9b69-886f-4102-aba3-a161362ee491') - .query(true) - .reply(200, {"jobId":"019a9b69-886f-4102-aba3-a161362ee491","lastUpdateDateTime":"2021-10-23T00:48:39Z","createdDateTime":"2021-10-23T00:48:39Z","expirationDateTime":"2021-10-24T00:48:39Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '35', - 'apim-request-id', - '108280ca-354d-4fd5-a321-f6b74d10cb68', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/019a9b69-886f-4102-aba3-a161362ee491') - .query(true) - .reply(200, {"jobId":"019a9b69-886f-4102-aba3-a161362ee491","lastUpdateDateTime":"2021-10-23T00:48:39Z","createdDateTime":"2021-10-23T00:48:39Z","expirationDateTime":"2021-10-24T00:48:39Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '110', - 'apim-request-id', - '38d6fae1-e52c-4540-87f7-e9a548f88d90', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/019a9b69-886f-4102-aba3-a161362ee491') - .query(true) - .reply(200, {"jobId":"019a9b69-886f-4102-aba3-a161362ee491","lastUpdateDateTime":"2021-10-23T00:48:39Z","createdDateTime":"2021-10-23T00:48:39Z","expirationDateTime":"2021-10-24T00:48:39Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '118', - 'apim-request-id', - '70e8d197-d1e8-4f37-8e51-a702762c2815', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.json new file mode 100644 index 000000000000..1f2062875ea6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.json @@ -0,0 +1,941 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000583-0000000000001262-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f0dc0b45-33e6-4a2f-8810-b7a3e0b13443" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "f6949485-f202-4b5c-bb2b-ceddd2b81521", + "Date": "Fri, 18 Feb 2022 19:08:31 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/53d56ad1-54f6-4b3e-959e-b48f87cfda94", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "192" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/53d56ad1-54f6-4b3e-959e-b48f87cfda94?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000584-0000000000001264-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "394eb85d-90b2-40a5-b124-ae248f1404f4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d144b84-9e6d-4a19-ae86-c04774d9a742", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "53d56ad1-54f6-4b3e-959e-b48f87cfda94", + "lastUpdateDateTime": "2022-02-18T19:08:32Z", + "createdDateTime": "2022-02-18T19:08:32Z", + "expirationDateTime": "2022-02-19T19:08:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/53d56ad1-54f6-4b3e-959e-b48f87cfda94?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000585-0000000000001266-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b6e74e3e-8081-4e84-a1f9-420047e10e90" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5714a480-3ac1-460e-9eb9-8f064af8290e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "53d56ad1-54f6-4b3e-959e-b48f87cfda94", + "lastUpdateDateTime": "2022-02-18T19:08:32Z", + "createdDateTime": "2022-02-18T19:08:32Z", + "expirationDateTime": "2022-02-19T19:08:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/53d56ad1-54f6-4b3e-959e-b48f87cfda94?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000586-0000000000001268-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bf371766-cbfb-4ccf-81bc-bf5c47bd08da" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6fb5369-1514-4e2d-a910-1a3c9f5778eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "332" + }, + "ResponseBody": { + "jobId": "53d56ad1-54f6-4b3e-959e-b48f87cfda94", + "lastUpdateDateTime": "2022-02-18T19:08:33Z", + "createdDateTime": "2022-02-18T19:08:32Z", + "expirationDateTime": "2022-02-19T19:08:32Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/53d56ad1-54f6-4b3e-959e-b48f87cfda94?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000587-0000000000001270-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0543b832-5f51-41ba-ab91-a3c692d85598" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "065d35b5-a929-44ea-b588-037214894a0d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "jobId": "53d56ad1-54f6-4b3e-959e-b48f87cfda94", + "lastUpdateDateTime": "2022-02-18T19:08:33Z", + "createdDateTime": "2022-02-18T19:08:32Z", + "expirationDateTime": "2022-02-19T19:08:32Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js deleted file mode 100644 index 476d3371998e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e8fe4b7a699e69181a6d1d694a0b8992"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c262df95-60f0-4674-9115-12c760fb9801', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Aj_Y9aI6zoBNog3okGR494Y; expires=Mon, 22-Nov-2021 00:48:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEoJL3_BVUNOHwlczWUWgIdGMwa1FPbr9_tn-uRC7rTmp-w6M38ADvPrUmRO4cxX_JMVm1268f0b3Dal3xHeOdE7TwtjlP6UroAEcVlcd1kezjw4isKyuhS4caLrxZFaG8v8QglaLJelYWpO35QrkhxFPZCP2fTmyyoYy7dPfPeogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406970ec0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkcU219JG5tHmPb3nx5KIQA; expires=Mon, 22-Nov-2021 00:48:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYxhgL7648Te_Mj7Mx74c4ZOqFAdgfXC0tUn4kAguD77_Z307bxlZ3O_OJPJV8zhjPodkPMHLIkC0VnxnEy1wajIreuLjzVVgucc5T8SYEvKEtTbYA-e3qP3ktL9jYqfAWsqOUvgnaAUAkGZambc1kDj5F_WbEkhJwknE_Wsp1UggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d7ab171d-8b65-41d2-8959-875944c3371b&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-406975ec0500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AsTlazcZ_4JLgqT-3MG0Kg8; expires=Mon, 22-Nov-2021 00:48:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:31 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"1","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/259df31b-2d3f-453c-9cf0-e4f6c4066ae1', - 'x-envoy-upstream-service-time', - '276', - 'apim-request-id', - '504c6216-3228-4ce9-84ba-9875b64697c8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/259df31b-2d3f-453c-9cf0-e4f6c4066ae1') - .query(true) - .reply(200, {"jobId":"259df31b-2d3f-453c-9cf0-e4f6c4066ae1","lastUpdateDateTime":"2021-10-23T00:48:33Z","createdDateTime":"2021-10-23T00:48:32Z","expirationDateTime":"2021-10-24T00:48:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - 'e3b68b62-8c25-40f3-b2ef-d6575c8a552f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/259df31b-2d3f-453c-9cf0-e4f6c4066ae1') - .query(true) - .reply(200, {"jobId":"259df31b-2d3f-453c-9cf0-e4f6c4066ae1","lastUpdateDateTime":"2021-10-23T00:48:33Z","createdDateTime":"2021-10-23T00:48:32Z","expirationDateTime":"2021-10-24T00:48:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '3b6c0ab7-d2dd-4514-be02-789601c1c09c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/259df31b-2d3f-453c-9cf0-e4f6c4066ae1') - .query(true) - .reply(200, {"jobId":"259df31b-2d3f-453c-9cf0-e4f6c4066ae1","lastUpdateDateTime":"2021-10-23T00:48:34Z","createdDateTime":"2021-10-23T00:48:32Z","expirationDateTime":"2021-10-24T00:48:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '75', - 'apim-request-id', - 'c53bd963-431a-45d0-b79b-edea32d88c6d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/259df31b-2d3f-453c-9cf0-e4f6c4066ae1') - .query(true) - .reply(200, {"jobId":"259df31b-2d3f-453c-9cf0-e4f6c4066ae1","lastUpdateDateTime":"2021-10-23T00:48:34Z","createdDateTime":"2021-10-23T00:48:32Z","expirationDateTime":"2021-10-24T00:48:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '95', - 'apim-request-id', - '00b94974-4b00-42d5-9a68-4c05d8551917', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:35 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.json new file mode 100644 index 000000000000..ccc09b4f3604 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.json @@ -0,0 +1,941 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000573-0000000000001240-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bccf1470-4b42-4c0b-8297-bb666cf72ed8" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "1", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d899563d-b721-489c-a811-e059a50c727c", + "Date": "Fri, 18 Feb 2022 19:08:24 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/74fec092-a486-4ae8-9881-3274e1e57d85", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/74fec092-a486-4ae8-9881-3274e1e57d85?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000574-0000000000001242-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f490f9de-1a70-4654-a1be-7e717e1fff11" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aed69b84-d375-4bde-92ce-05b31fe510c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "74fec092-a486-4ae8-9881-3274e1e57d85", + "lastUpdateDateTime": "2022-02-18T19:08:25Z", + "createdDateTime": "2022-02-18T19:08:25Z", + "expirationDateTime": "2022-02-19T19:08:25Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/74fec092-a486-4ae8-9881-3274e1e57d85?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000575-0000000000001244-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8a8511ee-dc11-4a77-9254-9cc5a355b20d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5438ff84-d6c2-4e57-9793-465719cff527", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "74fec092-a486-4ae8-9881-3274e1e57d85", + "lastUpdateDateTime": "2022-02-18T19:08:25Z", + "createdDateTime": "2022-02-18T19:08:25Z", + "expirationDateTime": "2022-02-19T19:08:25Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/74fec092-a486-4ae8-9881-3274e1e57d85?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000576-0000000000001246-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e067586d-d294-48a0-a3fc-2b03829ef3b3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4da17e35-b00f-4902-b8c3-2630d7f1c089", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "74fec092-a486-4ae8-9881-3274e1e57d85", + "lastUpdateDateTime": "2022-02-18T19:08:26Z", + "createdDateTime": "2022-02-18T19:08:25Z", + "expirationDateTime": "2022-02-19T19:08:25Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/74fec092-a486-4ae8-9881-3274e1e57d85?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000577-0000000000001248-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a96bede3-0b2a-4ec4-b797-a002e2eeadc9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b28cd28c-ca5a-40c8-a5aa-64a6e00b486c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "168" + }, + "ResponseBody": { + "jobId": "74fec092-a486-4ae8-9881-3274e1e57d85", + "lastUpdateDateTime": "2022-02-18T19:08:26Z", + "createdDateTime": "2022-02-18T19:08:25Z", + "expirationDateTime": "2022-02-19T19:08:25Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js deleted file mode 100644 index d976ca8aa6a1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "4fe6d983363e697807ee4c3c068d2783"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '816fe3a1-af41-422c-9742-c128c8523401', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AubWxHiyqp1Ovuz8lqEYI6Q; expires=Mon, 22-Nov-2021 00:49:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrzi-DOjQfTjUGkPsAVtECjuK9fuFhEgrGC5ReS--LjNTx9Bj_YUt0EjaZWAbYWWR68SSYaMPpEzsdP9Dg3KUngynTwlsvl5LtGP-BXNMJVDzXuKySGuFoAe0aw_mwZObk7XeIshxWwcqwtUYIeL4J9KrlogVddrjuAdLKEgpkQV0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:41 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443e0970200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AncV4X1Wx0NLihZ3qdLTZLs; expires=Mon, 22-Nov-2021 00:49:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0vS_5BzvxdMYMRhvFztum8jyqvf42e2qfFH-5HrHPQVwV6DGKZKuXRTFdT-Ak_FUVzGXBFE_o3S_8j7uOID8vjWZKa_3m18is7F_oIt9nwcqB4G6B_oGKjlSKss7qu2ntD6MUjn0obAMpJRd6u_qonpf6icD0linfivkB7VSUJ8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:41 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=d4d326d8-625a-4b15-84ea-0332ee7b4755&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b46432d0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AmZ6uGZE0BZIpsiTlGHN5Lc; expires=Mon, 22-Nov-2021 00:49:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:41 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3ab0466e-488b-4a34-a624-c15f8d943bd0', - 'x-envoy-upstream-service-time', - '161', - 'apim-request-id', - '0b148c46-b728-4c1c-abce-b24097efdc54', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3ab0466e-488b-4a34-a624-c15f8d943bd0') - .query(true) - .reply(200, {"jobId":"3ab0466e-488b-4a34-a624-c15f8d943bd0","lastUpdateDateTime":"2021-10-23T00:49:41Z","createdDateTime":"2021-10-23T00:49:41Z","expirationDateTime":"2021-10-24T00:49:41Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '70e23649-fe82-444a-a612-e59a4e15388f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3ab0466e-488b-4a34-a624-c15f8d943bd0') - .query(true) - .reply(200, {"jobId":"3ab0466e-488b-4a34-a624-c15f8d943bd0","lastUpdateDateTime":"2021-10-23T00:49:41Z","createdDateTime":"2021-10-23T00:49:41Z","expirationDateTime":"2021-10-24T00:49:41Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '5200dc59-90e5-44e5-a2b6-c1c7d9b4c5e8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3ab0466e-488b-4a34-a624-c15f8d943bd0') - .query(true) - .reply(200, {"jobId":"3ab0466e-488b-4a34-a624-c15f8d943bd0","lastUpdateDateTime":"2021-10-23T00:49:42Z","createdDateTime":"2021-10-23T00:49:41Z","expirationDateTime":"2021-10-24T00:49:41Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '100', - 'apim-request-id', - 'cd7dba6c-a3ad-4289-a28e-058634e40797', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3ab0466e-488b-4a34-a624-c15f8d943bd0') - .query(true) - .reply(200, {"jobId":"3ab0466e-488b-4a34-a624-c15f8d943bd0","lastUpdateDateTime":"2021-10-23T00:49:42Z","createdDateTime":"2021-10-23T00:49:41Z","expirationDateTime":"2021-10-24T00:49:41Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '56', - 'apim-request-id', - 'e3a10939-998b-48a9-8faa-e4a6329850e3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json new file mode 100644 index 000000000000..d1e1e02c6832 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json @@ -0,0 +1,202 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000639-0000000000001387-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b9942045-1733-4e8d-9715-d6f9fb07cc34" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "db97a457-6ab3-4b54-801c-a4c77f6b0dbf", + "Date": "Fri, 18 Feb 2022 19:09:14 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000640-0000000000001389-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f9921e50-ce2f-45bb-b91b-1f2c9440fb47" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ec6ec09-6e79-4f4d-b199-2708deb052a7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16", + "lastUpdateDateTime": "2022-02-18T19:09:14Z", + "createdDateTime": "2022-02-18T19:09:14Z", + "expirationDateTime": "2022-02-19T19:09:14Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000641-0000000000001391-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8861694a-f954-4c18-b887-1d6c5b0ae358" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bbb3716e-dd7f-44cb-b212-1035d425a259", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16", + "lastUpdateDateTime": "2022-02-18T19:09:14Z", + "createdDateTime": "2022-02-18T19:09:14Z", + "expirationDateTime": "2022-02-19T19:09:14Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000642-0000000000001393-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "74ea3950-36e4-47e1-b5e3-927c1c263c9d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83b78d38-832e-403c-952d-3a15f8e79c31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16", + "lastUpdateDateTime": "2022-02-18T19:09:15Z", + "createdDateTime": "2022-02-18T19:09:14Z", + "expirationDateTime": "2022-02-19T19:09:14Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000643-0000000000001395-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "29f56373-b84e-4ae7-ad8e-c03ab4dcceca" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "968e9a0a-3245-4812-b65b-df4216d9fac6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "8cc10dd4-3fcd-45dd-b76d-b6cbfce34f16", + "lastUpdateDateTime": "2022-02-18T19:09:15Z", + "createdDateTime": "2022-02-18T19:09:14Z", + "expirationDateTime": "2022-02-19T19:09:14Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js deleted file mode 100644 index 3547dd63ae43..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "95091b45dc61495bb4243ad632fd8fa2"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'eef5aa59-77fc-4c9b-8eb5-5bde30840800', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AgZwhjs1WiVIjyrMKnnLBiI; expires=Mon, 22-Nov-2021 00:49:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMm1Ych7l_PCRnfL6OgTcvWBOy7ikWnJ7ZGx2KgKlJv5EP-Kld9SFQ7bd958tgtA2NuMaD-_il1cj0iG2JO1LjOJZH13RdZdJzrgd0-PDjdDK2r2K1EGhcLCzWE6xz91m-rxhglJJbGYuH-ne13TFecuDTn_kr8OEYQfy0aoLU34gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:44 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c64caa61-3fcc-4dcd-8dea-7ea1946a0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AmlcriR-fQdAr0Otsb_-bwU; expires=Mon, 22-Nov-2021 00:49:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1V_APNj-Uw-ZFy93FhzoxAt8YduU4qmYvujGNojwABmiOFcEON5AwbisvFPIc5juSIx7ILN7RW_-FaoO4EOV2QdAojP4XG81C13vQmqaZqKhT7nBE8KHLyfnb7Yra7YOPDBqhrckqNQoXxLuShOjYdC2M-cssW0M3GRbWbh4TscgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:44 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a684223d-7a7d-4688-925a-a2bda819d695&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0e056ee7-0b6b-43db-8e41-750b38be0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AmaphLQWZZBKl5ep_iR7qg8; expires=Mon, 22-Nov-2021 00:49:44 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:44 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/6c91fb3a-af2f-4f77-8b07-a1e1647f057e', - 'x-envoy-upstream-service-time', - '149', - 'apim-request-id', - '0eed5de4-7b86-43c4-ae94-f0f746fe168a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/6c91fb3a-af2f-4f77-8b07-a1e1647f057e') - .query(true) - .reply(200, {"jobId":"6c91fb3a-af2f-4f77-8b07-a1e1647f057e","lastUpdateDateTime":"2021-10-23T00:49:44Z","createdDateTime":"2021-10-23T00:49:44Z","expirationDateTime":"2021-10-24T00:49:44Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '00d8677c-e33c-476a-8c2e-99975a637779', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/6c91fb3a-af2f-4f77-8b07-a1e1647f057e') - .query(true) - .reply(200, {"jobId":"6c91fb3a-af2f-4f77-8b07-a1e1647f057e","lastUpdateDateTime":"2021-10-23T00:49:44Z","createdDateTime":"2021-10-23T00:49:44Z","expirationDateTime":"2021-10-24T00:49:44Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '7155e613-70c5-4929-9603-21a133583d49', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/6c91fb3a-af2f-4f77-8b07-a1e1647f057e') - .query(true) - .reply(200, {"jobId":"6c91fb3a-af2f-4f77-8b07-a1e1647f057e","lastUpdateDateTime":"2021-10-23T00:49:45Z","createdDateTime":"2021-10-23T00:49:44Z","expirationDateTime":"2021-10-24T00:49:44Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '70', - 'apim-request-id', - 'f0286a2a-caec-4432-aec9-e86231345262', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/6c91fb3a-af2f-4f77-8b07-a1e1647f057e') - .query(true) - .reply(200, {"jobId":"6c91fb3a-af2f-4f77-8b07-a1e1647f057e","lastUpdateDateTime":"2021-10-23T00:49:45Z","createdDateTime":"2021-10-23T00:49:44Z","expirationDateTime":"2021-10-24T00:49:44Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '59', - 'apim-request-id', - 'cd1ed253-b351-4475-bf74-1b0b8e72e2c2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json new file mode 100644 index 000000000000..663385fc2ce9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json @@ -0,0 +1,202 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000644-0000000000001398-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1682ed39-054a-44ef-b9b2-7d65140a1289" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0684a40e-e5b5-4f50-b96c-10f31131d5ce", + "Date": "Fri, 18 Feb 2022 19:09:17 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "118" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000645-0000000000001400-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c8f9c52e-98b7-47a9-8e91-042012a94a34" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9cf76aae-e403-4a09-8b45-48ced16495eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b", + "lastUpdateDateTime": "2022-02-18T19:09:17Z", + "createdDateTime": "2022-02-18T19:09:17Z", + "expirationDateTime": "2022-02-19T19:09:17Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000646-0000000000001402-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "80df12d0-5c6d-4056-b3c7-2ad9ea2b5a7e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff9c17ac-ac5b-4fd4-8af5-ec71b170f402", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b", + "lastUpdateDateTime": "2022-02-18T19:09:17Z", + "createdDateTime": "2022-02-18T19:09:17Z", + "expirationDateTime": "2022-02-19T19:09:17Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000647-0000000000001404-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "593b70bb-b63a-4b56-ac6f-287ea92bbd65" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18fa40d0-a873-4736-8d3d-acffc0d14df0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b", + "lastUpdateDateTime": "2022-02-18T19:09:18Z", + "createdDateTime": "2022-02-18T19:09:17Z", + "expirationDateTime": "2022-02-19T19:09:17Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000648-0000000000001406-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dbdc89bb-3742-4441-a8ad-d2ac370bcbff" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23c8863d-1f59-4a08-be81-517bae989c20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "jobId": "742bdb87-6f1d-4a30-95e3-ea27a2fa1f4b", + "lastUpdateDateTime": "2022-02-18T19:09:18Z", + "createdDateTime": "2022-02-18T19:09:17Z", + "expirationDateTime": "2022-02-19T19:09:17Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js deleted file mode 100644 index 9e0ae32f0de7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js +++ /dev/null @@ -1,191 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d39ab98c609122d2db1445b5b3b136d7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0dd2093f-e8b9-4f2b-9a7c-0211ad7f0600', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AmTWYMr9u9ZBm_Jf-vP9PNk; expires=Mon, 22-Nov-2021 00:49:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLfLcmB9JO_hoU3Lwy0LHT6qwJHZTFr75EVEBKBOM8eIbOpCZGfqmBJFnww66pMvgdkxpx_dVDqaRngYfrtgaSzV2txH2DvL8diC6yDfxCOKCRZw0sXIGe8B7D2oehMqihqymmfwCP8pS1IBhp1O7pL5askX7QMV30G7MNEB2mIkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0e056ee7-0b6b-43db-8e41-750b21bf0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=At4x3VHdEsBAsNjEpQwlsOE; expires=Mon, 22-Nov-2021 00:49:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1CPap_yXNmz0gLqEyNrIQiS6dsUQE_A6DqqrMBbHbvStqIdoEclEvfPmwtkf2grcVhRQUD1FAeVymXh6pn2iDpmJ7rxsKDhDPf8A6jlLyGL1ZcMbyucpYQgO2u1xoWuS_ZihgGxkt3NTW6hk5WLYkzo9MvLgOY55li_p5rxHpwYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=145b3666-c303-4500-b761-a6b78a0b980c&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec7982250600', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ajn1bkkdoStFnV-65qPpSRY; expires=Mon, 22-Nov-2021 00:49:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4a68b92c-11da-49c4-8499-d38868c4f715', - 'x-envoy-upstream-service-time', - '237', - 'apim-request-id', - 'c606e45c-5940-4f25-86ce-e88ce1989efe', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4a68b92c-11da-49c4-8499-d38868c4f715') - .query(true) - .reply(200, {"jobId":"4a68b92c-11da-49c4-8499-d38868c4f715","lastUpdateDateTime":"2021-10-23T00:49:51Z","createdDateTime":"2021-10-23T00:49:51Z","expirationDateTime":"2021-10-24T00:49:51Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '035f7a1b-7773-4830-b920-938aa25f4993', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4a68b92c-11da-49c4-8499-d38868c4f715') - .query(true) - .reply(200, {"jobId":"4a68b92c-11da-49c4-8499-d38868c4f715","lastUpdateDateTime":"2021-10-23T00:49:51Z","createdDateTime":"2021-10-23T00:49:51Z","expirationDateTime":"2021-10-24T00:49:51Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f93d282c-177e-4238-89af-865badabba40', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4a68b92c-11da-49c4-8499-d38868c4f715') - .query(true) - .reply(200, {"jobId":"4a68b92c-11da-49c4-8499-d38868c4f715","lastUpdateDateTime":"2021-10-23T00:49:52Z","createdDateTime":"2021-10-23T00:49:51Z","expirationDateTime":"2021-10-24T00:49:51Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '74', - 'apim-request-id', - '1541611a-2102-4cef-b853-470446ba1a44', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:53 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.json new file mode 100644 index 000000000000..9ce576c82875 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.json @@ -0,0 +1,521 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "aa6bf375-a553-4579-bf88-835494f30497" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "646b7778-0199-4c45-8aa3-5879dc3d7d16", + "Date": "Fri, 18 Feb 2022 19:46:30 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1dd7f7c6-3b81-4be9-8322-48f3994077b0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1dd7f7c6-3b81-4be9-8322-48f3994077b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "85d629b6-732b-46d1-8cb4-0996ca78a0ae" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae789869-dfd1-4499-811a-77f6ade184ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "1dd7f7c6-3b81-4be9-8322-48f3994077b0", + "lastUpdateDateTime": "2022-02-18T19:46:31Z", + "createdDateTime": "2022-02-18T19:46:31Z", + "expirationDateTime": "2022-02-19T19:46:31Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1dd7f7c6-3b81-4be9-8322-48f3994077b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b174348f-9f60-4eb0-bf8e-647bd6a9acff" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d958fda0-7b0b-4b63-999a-08879490f5a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "1dd7f7c6-3b81-4be9-8322-48f3994077b0", + "lastUpdateDateTime": "2022-02-18T19:46:31Z", + "createdDateTime": "2022-02-18T19:46:31Z", + "expirationDateTime": "2022-02-19T19:46:31Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1dd7f7c6-3b81-4be9-8322-48f3994077b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "08a6b7b4-4589-4661-8ce3-696b1511bd8f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aecaf377-cc1c-4c43-9637-aa98e90f3e4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "jobId": "1dd7f7c6-3b81-4be9-8322-48f3994077b0", + "lastUpdateDateTime": "2022-02-18T19:46:31Z", + "createdDateTime": "2022-02-18T19:46:31Z", + "expirationDateTime": "2022-02-19T19:46:31Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js deleted file mode 100644 index 5fd1bb613d9c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "2d6dc378f178664fbb5e419f53f37dd5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1adf1ac3-d8b4-45e7-8c50-7d226cc55000', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AjrGqsJNrolFl4IhOgPRigs; expires=Mon, 22-Nov-2021 00:49:18 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmYUZElXC5AhAPZpqjudRcnNmwFXQn90H7v3D6GtYapCSJqqrnGHi22Xe-onFYIuXJNIa_q7S9vdVnw43etPaEA8aIYHHhAfyHLo0YIZ1ZONTUAuH3-D7Uo2DYjsEjbo-6xNIHO9qqivfE6ueQzGFJuVZ-0mz1wXsvbqT5xPBPZMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:18 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec791f210600', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=ApVaFEPcXR5KlovBpqxnopc; expires=Mon, 22-Nov-2021 00:49:18 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrzq5VtCwTjLQK4DfeJwIn0bqhsm-nlR_f7WFQmGqZsbp6treX5lE7h33o5ULF2I_6nVYiQv88a-2ueAFFda2Y6R3LejtTrpf6Yhubdo_f_a-0kfN1GQ8QzuGsvfq5ZdAtgaqpIVN_p4uyIkOiiP-Cnu9Kbg3i-mcPCooV1OSuyikgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:18 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=672c7611-5604-4b2a-b16b-5ea18a794800&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e69b30300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AhkYi3R5J9dFqltPQ3eePkM; expires=Mon, 22-Nov-2021 00:49:18 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:18 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9138c2a3-6f46-4093-b864-d174a2828f21', - 'x-envoy-upstream-service-time', - '453', - 'apim-request-id', - '91889ab0-4b1c-4ff9-84ca-5e3034eeeb38', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9138c2a3-6f46-4093-b864-d174a2828f21') - .query(true) - .reply(200, {"jobId":"9138c2a3-6f46-4093-b864-d174a2828f21","lastUpdateDateTime":"2021-10-23T00:49:19Z","createdDateTime":"2021-10-23T00:49:18Z","expirationDateTime":"2021-10-24T00:49:18Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'eacbff5b-6f5b-4d0a-a7cd-528e2f66132b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9138c2a3-6f46-4093-b864-d174a2828f21') - .query(true) - .reply(200, {"jobId":"9138c2a3-6f46-4093-b864-d174a2828f21","lastUpdateDateTime":"2021-10-23T00:49:19Z","createdDateTime":"2021-10-23T00:49:18Z","expirationDateTime":"2021-10-24T00:49:18Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'cb1ee30f-6bb8-4a7a-9678-090f3febe77b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9138c2a3-6f46-4093-b864-d174a2828f21') - .query(true) - .reply(200, {"jobId":"9138c2a3-6f46-4093-b864-d174a2828f21","lastUpdateDateTime":"2021-10-23T00:49:20Z","createdDateTime":"2021-10-23T00:49:18Z","expirationDateTime":"2021-10-24T00:49:18Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '182', - 'apim-request-id', - 'a07942fb-8c19-4e47-ab9c-b88860bde5e8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9138c2a3-6f46-4093-b864-d174a2828f21') - .query(true) - .reply(200, {"jobId":"9138c2a3-6f46-4093-b864-d174a2828f21","lastUpdateDateTime":"2021-10-23T00:49:20Z","createdDateTime":"2021-10-23T00:49:18Z","expirationDateTime":"2021-10-24T00:49:18Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '160', - 'apim-request-id', - '3a24dab2-1047-4273-a173-c8961a09d4e6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:21 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json new file mode 100644 index 000000000000..cd32b7d4c9a2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json @@ -0,0 +1,271 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "139", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000605-0000000000001312-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "25a98e48-e38e-4688-a066-9ca6eb702ea6" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8d65119d-c6a3-42c5-97e5-0886b5afd6f2", + "Date": "Fri, 18 Feb 2022 19:08:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9f0fe82d-9dfc-4f51-b0cf-638339dc645e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "182" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9f0fe82d-9dfc-4f51-b0cf-638339dc645e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000606-0000000000001314-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "84acbbd3-bb91-45ff-9c29-2088914ed9a1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b4c05f6-a90c-47c6-8e5c-202233650259", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "9f0fe82d-9dfc-4f51-b0cf-638339dc645e", + "lastUpdateDateTime": "2022-02-18T19:08:49Z", + "createdDateTime": "2022-02-18T19:08:49Z", + "expirationDateTime": "2022-02-19T19:08:49Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9f0fe82d-9dfc-4f51-b0cf-638339dc645e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000607-0000000000001316-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "25b0181d-c96f-45be-bf0b-e276b5b0b1c1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5623b663-a981-46b9-a9d5-ccab4a2c8e61", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "9f0fe82d-9dfc-4f51-b0cf-638339dc645e", + "lastUpdateDateTime": "2022-02-18T19:08:49Z", + "createdDateTime": "2022-02-18T19:08:49Z", + "expirationDateTime": "2022-02-19T19:08:49Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9f0fe82d-9dfc-4f51-b0cf-638339dc645e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000608-0000000000001318-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "542ee9d9-d6fa-4767-9e39-a498aafbcaa4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6208876f-1b97-4501-b19d-0b0baf6298d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "245" + }, + "ResponseBody": { + "jobId": "9f0fe82d-9dfc-4f51-b0cf-638339dc645e", + "lastUpdateDateTime": "2022-02-18T19:08:50Z", + "createdDateTime": "2022-02-18T19:08:49Z", + "expirationDateTime": "2022-02-19T19:08:49Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9f0fe82d-9dfc-4f51-b0cf-638339dc645e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000609-0000000000001320-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b1ee3e69-59ca-4334-b45d-7ef793c53f5d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c85e0afd-261f-4fbb-b910-5def114a50bd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" + }, + "ResponseBody": { + "jobId": "9f0fe82d-9dfc-4f51-b0cf-638339dc645e", + "lastUpdateDateTime": "2022-02-18T19:08:50Z", + "createdDateTime": "2022-02-18T19:08:49Z", + "expirationDateTime": "2022-02-19T19:08:49Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js deleted file mode 100644 index 0dc546288ce3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "4234bf615139a007710624ac07ffab34"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7030cfce-c880-47ae-bfd2-35f7fadb0e00', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ah1nsUngBHNInFcPk4gq1Pk; expires=Mon, 22-Nov-2021 00:49:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroUlU8WVSYKYzgh9JssKCUaQhC42Fv1hlV5xAODe6cvvsNUc3UBQN4FfZKb3CHotG6RAx8Hp4Q_jn6d_y_LIV_glbP3A0IIuf3wta0XEzbPgGp2hXxBQAiu8LGgKRkgRKGD8ojep5r2OYRGD8OTyski-0BDGfd0GQQz9MQ5Qoo6kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:22 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b46032b0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AknHivxCkNVOq7i4sSPMjHw; expires=Mon, 22-Nov-2021 00:49:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTPt5i-QlrpMC_eQsHnaPjtSd0uLwltV1T7sQHGCGj9NWlQIPj-k9vOzfBW3AtlouJh6Om2fW_jIParRxQi2yosALuxlQEmJAgZ26RGR1FvVGGiUdXhLjO24I6V34XPvfuxTKL2u9oH63wruvUz80UQKPqKg5ASmKrdCFthZucx8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:22 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=82eaf51a-d546-4aa6-8de6-0aa272fb580f&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b46062b0300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Av9kc5yi8xNMgOe88bzrkmY; expires=Mon, 22-Nov-2021 00:49:22 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:22 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/15d28ddd-4fd4-4824-87df-ccba68683f18', - 'x-envoy-upstream-service-time', - '271', - 'apim-request-id', - '71f5aeb4-57a0-4e33-8497-0c790e6d1d00', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/15d28ddd-4fd4-4824-87df-ccba68683f18') - .query(true) - .reply(200, {"jobId":"15d28ddd-4fd4-4824-87df-ccba68683f18","lastUpdateDateTime":"2021-10-23T00:49:22Z","createdDateTime":"2021-10-23T00:49:22Z","expirationDateTime":"2021-10-24T00:49:22Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '98517ce5-12a4-4726-b60f-ca7a55f4b6c2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/15d28ddd-4fd4-4824-87df-ccba68683f18') - .query(true) - .reply(200, {"jobId":"15d28ddd-4fd4-4824-87df-ccba68683f18","lastUpdateDateTime":"2021-10-23T00:49:22Z","createdDateTime":"2021-10-23T00:49:22Z","expirationDateTime":"2021-10-24T00:49:22Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '909c2307-7ecc-4693-ae09-490f3147dcd4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/15d28ddd-4fd4-4824-87df-ccba68683f18') - .query(true) - .reply(200, {"jobId":"15d28ddd-4fd4-4824-87df-ccba68683f18","lastUpdateDateTime":"2021-10-23T00:49:23Z","createdDateTime":"2021-10-23T00:49:22Z","expirationDateTime":"2021-10-24T00:49:22Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '104', - 'apim-request-id', - '0069d149-1cbc-4aac-8b05-adc3ccd01b3f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:24 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/15d28ddd-4fd4-4824-87df-ccba68683f18') - .query(true) - .reply(200, {"jobId":"15d28ddd-4fd4-4824-87df-ccba68683f18","lastUpdateDateTime":"2021-10-23T00:49:23Z","createdDateTime":"2021-10-23T00:49:22Z","expirationDateTime":"2021-10-24T00:49:22Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '233', - 'apim-request-id', - 'f5ada619-8e6a-4018-89b1-df2be83d3358', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:24 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json new file mode 100644 index 000000000000..d332621721b6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json @@ -0,0 +1,267 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000610-0000000000001323-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1a2c6527-5ae8-4b6e-b376-323bd4be6fa9" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b1a48ecb-1886-47b4-a6af-82d8e4f2cef4", + "Date": "Fri, 18 Feb 2022 19:08:52 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7faf028c-3b6b-4d56-a948-c26c47548f3c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "181" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7faf028c-3b6b-4d56-a948-c26c47548f3c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000611-0000000000001325-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e7eccffe-ff4f-4595-9f76-18bac4e5dabf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e35e5586-5918-4cdf-baa7-721fcc8acc6c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "7faf028c-3b6b-4d56-a948-c26c47548f3c", + "lastUpdateDateTime": "2022-02-18T19:08:53Z", + "createdDateTime": "2022-02-18T19:08:53Z", + "expirationDateTime": "2022-02-19T19:08:53Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7faf028c-3b6b-4d56-a948-c26c47548f3c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000612-0000000000001327-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5f445b75-863a-4ae9-90e0-f11af8b89d70" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03ddd0bc-5fe5-4e5e-a08a-d61c2622feea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "7faf028c-3b6b-4d56-a948-c26c47548f3c", + "lastUpdateDateTime": "2022-02-18T19:08:53Z", + "createdDateTime": "2022-02-18T19:08:53Z", + "expirationDateTime": "2022-02-19T19:08:53Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7faf028c-3b6b-4d56-a948-c26c47548f3c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000613-0000000000001329-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a80cd3ba-52b5-4cdc-ba5e-7b70391599ac" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f8faef58-2b30-42ac-a040-6066230e01f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" + }, + "ResponseBody": { + "jobId": "7faf028c-3b6b-4d56-a948-c26c47548f3c", + "lastUpdateDateTime": "2022-02-18T19:08:54Z", + "createdDateTime": "2022-02-18T19:08:53Z", + "expirationDateTime": "2022-02-19T19:08:53Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7faf028c-3b6b-4d56-a948-c26c47548f3c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000614-0000000000001331-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c1b702f3-cbcf-46a8-a908-3719cd28a2ff" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0bed88cf-4e1d-4bd7-ba0a-9268e3becbc9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "79" + }, + "ResponseBody": { + "jobId": "7faf028c-3b6b-4d56-a948-c26c47548f3c", + "lastUpdateDateTime": "2022-02-18T19:08:54Z", + "createdDateTime": "2022-02-18T19:08:53Z", + "expirationDateTime": "2022-02-19T19:08:53Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js deleted file mode 100644 index c4e4730924d7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f016ed25d69cac1c7432466f1a7578fc"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7beccc55-0c98-460e-afdc-9012678d2801', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ai91yaU37O5AuTPuqm0GmD4; expires=Mon, 22-Nov-2021 00:49:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroLLEU6E9BxGGPsBgnkFRtx_vfHBoPgYpiyXSul8to7YZRsZSOVzy7d5ZX7DgTNmOiwPgq5TGg_Xva1SLVb4jpADaFzCT7Rzzmb3TFHzMGHAfTKdK17QNw_tuVkcqahRpACXCUVkwNU4-Xz2E-GU316vDN73nMdz9N3yGj-j4QlMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:11 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0e056ee7-0b6b-43db-8e41-750b5cba0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ali_tK-A7z1BhM9TqaGQoX4; expires=Mon, 22-Nov-2021 00:49:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraWNd3Gf5JDCPLWPbfWveYkyOPm1hDQkKSvFPDvNidsu2Cfq5h8swiTBw2U8JG3y-Ic-K0J0HThN14jGjq2FIBrkMTPgjeBsQiQ1c_g3Nfj66SsdwZsMWD3j_PtsyUknY9SFXA_uqSXZeEGObEGgL-OQsibWESNQi40LinRgSmnIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:11 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=dd078b8b-3868-4321-a526-ddda28ebd168&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4e12589e-050b-4fb3-8971-4069e1f00500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AkJMIdN7IjNKnLnr2ag-ihU; expires=Mon, 22-Nov-2021 00:49:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:11 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"1","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"2","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"3","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"4","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"5","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"6","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"7","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"8","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"9","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"10","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"11","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"12","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"13","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"14","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"15","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"16","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"17","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"18","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"19","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"20","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"21","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"22","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"23","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"24","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"25","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"26","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"27","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"28","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"29","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"30","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"31","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"32","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"33","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"34","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"35","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"36","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"37","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"38","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"39","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"40","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"41","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"42","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"43","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"44","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"45","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"46","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"47","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"48","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"49","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"50","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"51","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"52","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"53","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"54","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"55","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"56","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"57","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"58","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"59","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"60","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"61","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"62","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"63","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"64","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"65","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"66","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"67","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"68","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"69","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"70","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"71","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"72","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"73","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"74","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"75","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"76","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"77","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"78","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"79","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"80","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"81","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"82","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"83","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"84","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"85","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"86","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"87","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"88","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"89","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"90","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"91","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"92","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"93","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"94","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"95","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"96","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"97","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"98","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"99","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"100","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"101","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"102","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"103","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"104","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"105","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"106","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"107","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"108","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"109","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"110","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"111","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"112","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"113","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"114","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"115","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"116","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"117","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"118","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"119","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"120","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"121","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"122","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"123","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"124","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"125","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"126","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"127","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"128","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"129","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"130","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"131","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"132","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"133","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"134","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"135","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"136","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"137","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"138","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"139","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"140","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"141","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"142","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"143","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"144","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"145","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"146","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"147","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"148","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"149","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"150","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"151","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"152","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"153","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"154","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"155","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"156","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"157","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"158","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"159","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"160","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"161","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"162","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"163","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"164","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"165","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"166","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"167","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"168","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"169","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"170","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"171","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"172","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"173","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"174","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"175","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"176","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"177","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"178","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"179","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"180","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"181","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"182","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"183","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"184","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"185","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"186","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"187","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"188","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"189","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"190","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"191","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"192","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"193","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"194","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"195","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"196","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"197","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"198","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"199","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"200","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"201","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"202","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"203","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"204","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"205","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"206","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"207","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"208","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"209","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"210","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"211","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"212","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"213","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"214","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"215","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"216","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"217","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"218","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"219","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"220","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"221","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"222","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"223","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"224","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"225","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"226","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"227","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"228","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"229","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"230","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"231","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"232","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"233","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"234","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"235","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"236","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"237","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"238","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"239","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"240","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"241","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"242","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"243","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"244","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"245","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"246","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"247","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"248","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"249","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"250","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"251","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"252","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"253","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"254","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"255","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"256","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"257","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"258","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"259","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"260","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"261","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"262","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"263","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"264","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"265","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"266","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"267","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"268","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"269","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"270","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"271","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"272","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"273","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"274","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"275","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"276","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"277","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"278","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"279","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"280","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"281","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"282","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"283","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"284","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"285","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"286","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"287","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"288","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"289","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"290","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"291","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"292","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"293","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"294","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"295","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"296","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"297","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"298","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"299","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"300","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"301","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"302","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"303","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"304","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"305","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"306","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"307","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"308","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"309","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"310","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"311","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"312","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"313","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"314","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"315","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"316","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"317","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"318","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"319","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"320","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"321","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"322","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"323","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"324","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"325","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"326","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"327","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"328","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"329","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"330","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"331","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"332","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"333","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"334","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"335","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"336","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"337","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"338","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"339","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"340","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"341","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"342","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"343","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"344","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"345","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"346","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"347","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"348","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"349","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"350","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"351","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"352","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"353","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"354","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"355","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"356","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"357","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"358","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"359","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"360","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"361","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"362","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"363","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"364","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"365","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"366","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"367","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"368","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"369","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"370","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"371","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"372","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"373","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"374","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"375","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"376","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"377","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"378","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"379","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"380","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"381","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"382","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"383","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"384","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"385","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"386","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"387","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"388","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"389","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"390","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"391","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"392","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"393","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"394","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"395","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"396","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"397","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"398","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"399","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"400","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"401","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"402","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"403","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"404","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"405","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"406","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"407","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"408","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"409","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"410","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"411","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"412","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"413","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"414","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"415","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"416","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"417","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"418","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"419","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"420","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"421","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"422","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"423","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"424","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"425","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"426","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"427","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"428","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"429","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"430","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"431","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"432","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"433","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"434","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"435","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"436","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"437","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"438","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"439","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"440","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"441","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"442","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"443","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"444","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"445","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"446","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"447","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"448","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"449","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"450","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"451","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"452","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"453","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"454","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"455","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"456","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"457","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"458","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"459","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"460","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"461","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"462","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"463","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"464","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"465","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"466","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"467","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"468","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"469","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"470","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"471","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"472","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"473","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"474","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"475","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"476","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"477","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"478","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"479","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"480","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"481","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"482","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"483","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"484","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"485","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"486","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"487","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"488","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"489","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"490","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"491","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"492","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"493","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"494","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"495","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"496","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"497","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"498","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"499","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"}]}) - .query(true) - .reply(413, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Request Payload sent is too large to be processed. Limit request size to: 524288"}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - 'b967bcd9-7455-4c03-8b55-bf68c21228d8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:12 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.json new file mode 100644 index 000000000000..58053050eba5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.json @@ -0,0 +1,2544 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "710405", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000599-0000000000001298-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ed79061e-5f3c-4167-b931-6dc2f5d902d5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "1", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "2", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "3", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "4", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "5", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "6", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "7", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "8", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "9", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "10", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "11", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "12", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "13", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "14", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "15", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "16", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "17", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "18", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "19", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "20", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "21", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "22", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "23", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "24", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "25", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "26", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "27", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "28", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "29", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "30", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "31", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "32", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "33", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "34", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "35", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "36", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "37", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "38", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "39", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "40", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "41", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "42", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "43", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "44", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "45", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "46", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "47", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "48", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "49", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "50", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "51", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "52", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "53", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "54", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "55", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "56", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "57", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "58", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "59", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "60", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "61", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "62", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "63", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "64", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "65", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "66", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "67", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "68", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "69", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "70", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "71", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "72", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "73", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "74", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "75", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "76", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "77", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "78", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "79", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "80", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "81", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "82", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "83", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "84", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "85", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "86", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "87", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "88", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "89", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "90", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "91", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "92", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "93", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "94", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "95", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "96", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "97", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "98", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "99", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "100", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "101", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "102", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "103", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "104", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "105", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "106", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "107", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "108", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "109", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "110", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "111", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "112", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "113", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "114", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "115", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "116", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "117", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "118", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "119", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "120", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "121", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "122", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "123", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "124", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "125", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "126", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "127", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "128", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "129", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "130", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "131", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "132", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "133", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "134", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "135", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "136", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "137", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "138", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "139", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "140", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "141", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "142", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "143", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "144", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "145", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "146", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "147", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "148", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "149", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "150", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "151", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "152", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "153", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "154", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "155", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "156", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "157", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "158", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "159", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "160", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "161", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "162", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "163", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "164", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "165", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "166", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "167", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "168", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "169", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "170", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "171", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "172", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "173", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "174", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "175", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "176", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "177", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "178", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "179", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "180", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "181", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "182", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "183", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "184", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "185", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "186", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "187", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "188", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "189", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "190", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "191", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "192", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "193", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "194", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "195", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "196", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "197", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "198", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "199", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "200", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "201", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "202", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "203", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "204", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "205", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "206", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "207", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "208", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "209", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "210", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "211", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "212", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "213", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "214", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "215", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "216", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "217", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "218", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "219", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "220", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "221", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "222", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "223", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "224", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "225", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "226", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "227", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "228", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "229", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "230", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "231", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "232", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "233", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "234", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "235", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "236", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "237", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "238", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "239", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "240", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "241", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "242", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "243", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "244", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "245", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "246", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "247", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "248", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "249", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "250", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "251", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "252", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "253", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "254", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "255", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "256", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "257", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "258", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "259", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "260", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "261", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "262", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "263", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "264", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "265", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "266", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "267", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "268", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "269", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "270", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "271", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "272", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "273", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "274", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "275", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "276", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "277", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "278", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "279", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "280", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "281", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "282", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "283", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "284", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "285", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "286", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "287", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "288", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "289", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "290", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "291", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "292", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "293", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "294", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "295", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "296", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "297", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "298", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "299", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "300", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "301", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "302", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "303", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "304", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "305", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "306", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "307", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "308", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "309", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "310", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "311", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "312", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "313", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "314", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "315", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "316", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "317", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "318", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "319", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "320", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "321", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "322", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "323", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "324", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "325", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "326", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "327", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "328", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "329", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "330", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "331", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "332", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "333", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "334", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "335", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "336", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "337", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "338", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "339", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "340", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "341", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "342", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "343", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "344", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "345", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "346", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "347", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "348", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "349", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "350", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "351", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "352", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "353", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "354", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "355", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "356", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "357", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "358", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "359", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "360", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "361", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "362", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "363", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "364", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "365", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "366", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "367", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "368", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "369", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "370", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "371", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "372", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "373", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "374", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "375", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "376", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "377", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "378", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "379", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "380", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "381", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "382", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "383", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "384", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "385", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "386", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "387", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "388", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "389", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "390", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "391", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "392", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "393", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "394", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "395", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "396", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "397", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "398", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "399", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "400", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "401", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "402", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "403", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "404", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "405", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "406", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "407", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "408", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "409", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "410", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "411", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "412", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "413", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "414", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "415", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "416", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "417", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "418", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "419", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "420", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "421", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "422", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "423", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "424", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "425", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "426", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "427", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "428", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "429", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "430", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "431", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "432", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "433", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "434", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "435", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "436", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "437", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "438", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "439", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "440", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "441", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "442", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "443", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "444", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "445", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "446", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "447", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "448", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "449", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "450", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "451", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "452", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "453", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "454", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "455", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "456", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "457", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "458", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "459", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "460", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "461", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "462", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "463", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "464", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "465", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "466", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "467", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "468", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "469", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "470", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "471", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "472", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "473", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "474", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "475", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "476", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "477", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "478", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "479", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "480", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "481", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "482", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "483", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "484", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "485", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "486", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "487", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "488", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "489", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "490", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "491", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "492", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "493", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "494", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "495", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "496", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "497", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "498", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "499", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + } + ] + }, + "StatusCode": 413, + "ResponseHeaders": { + "apim-request-id": "8f1f7d5e-a5dd-4788-ac75-901db12ff134", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "94" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Request Payload sent is too large to be processed. Limit request size to: 524288" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js deleted file mode 100644 index f89cf58f3cd3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js +++ /dev/null @@ -1,191 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1e575b94347ebbe18d25ab65a2be1654"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0035aece-1f44-44ac-9757-8dba93f2d100', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ai3HjHexCXFOvE6D8zAKcYI; expires=Mon, 22-Nov-2021 00:49:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLhgmSf6wv-l_GB1wTOQZExudOPVwHspWwT6Z-MSDiGRzEn8DEMVplLyTvUK1TnoE3ZDOk-qPOwK1V9isOy74ftguwk1BscAeE8Pjhp_OCyGtgrmY0gFBtMpLH36f0AYaxbQ428Rb7VuZdp7rHgUjCkgkimYvKk1hBg1_eKmM_H8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:25 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15b9fb40500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AtEx8EHhOC1OhQC-7dPwjD8; expires=Mon, 22-Nov-2021 00:49:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLRrr3jeZhrMnv80Zf7YCZpTuLSKmYZBY74X0aWmcCAnyIau_kssr994YFz_x_sAlMa5lisRpLr_eeHqORagAc7SVbOaJ5-qH1Avry2rKrlEQZyfZIwPRGp-8LLW_YsnGQto0k0X1wTxpZuBu6UADto6LFrBH8KGBCabX5ffW-30gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:25 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=cb26639d-88c7-4a34-8273-bee97990ba11&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '27c22fbf-7874-4fbc-9ee5-6f0315ca0200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AlPis5kC3O1FrzaCTIU16uA; expires=Mon, 22-Nov-2021 00:49:25 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:25 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9f81f643-79c0-48e9-8e82-41ea341eb8c7', - 'x-envoy-upstream-service-time', - '274', - 'apim-request-id', - '15aaa494-3ecf-4fd8-b44a-1480ee230c48', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9f81f643-79c0-48e9-8e82-41ea341eb8c7') - .query(true) - .reply(200, {"jobId":"9f81f643-79c0-48e9-8e82-41ea341eb8c7","lastUpdateDateTime":"2021-10-23T00:49:25Z","createdDateTime":"2021-10-23T00:49:25Z","expirationDateTime":"2021-10-24T00:49:25Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'bde45a79-1ce2-4f5c-ad42-0e23797dbae4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9f81f643-79c0-48e9-8e82-41ea341eb8c7') - .query(true) - .reply(200, {"jobId":"9f81f643-79c0-48e9-8e82-41ea341eb8c7","lastUpdateDateTime":"2021-10-23T00:49:25Z","createdDateTime":"2021-10-23T00:49:25Z","expirationDateTime":"2021-10-24T00:49:25Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '55b8499c-cbda-4e46-a328-e04a6c5a4283', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9f81f643-79c0-48e9-8e82-41ea341eb8c7') - .query(true) - .reply(200, {"jobId":"9f81f643-79c0-48e9-8e82-41ea341eb8c7","lastUpdateDateTime":"2021-10-23T00:49:26Z","createdDateTime":"2021-10-23T00:49:25Z","expirationDateTime":"2021-10-24T00:49:25Z","status":"succeeded","errors":[],"results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"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":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '96', - 'apim-request-id', - 'c1c89e0b-370f-4dd3-968c-c43db96b4cc3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:27 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json new file mode 100644 index 000000000000..f2d13b6730d9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json @@ -0,0 +1,215 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?model-version=latest\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000615-0000000000001334-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "010e08a3-4a93-4679-80a6-ae58d24c1fea" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0508a54f-e399-4191-82f3-1054d8a38b2f", + "Date": "Fri, 18 Feb 2022 19:08:57 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9ecdbc11-adaf-42ac-a022-f44f771bdfd1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "275" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9ecdbc11-adaf-42ac-a022-f44f771bdfd1?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000616-0000000000001336-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "71524616-4f7e-4762-adc8-6335eb2ec563" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "44873a49-771c-4cdc-a762-21c7a397d019", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "9ecdbc11-adaf-42ac-a022-f44f771bdfd1", + "lastUpdateDateTime": "2022-02-18T19:08:57Z", + "createdDateTime": "2022-02-18T19:08:57Z", + "expirationDateTime": "2022-02-19T19:08:57Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9ecdbc11-adaf-42ac-a022-f44f771bdfd1?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000617-0000000000001338-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c96f33fb-9300-4a46-96b6-d8d3feb5dbc3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "327f2fa1-9b1d-4f4b-9a4a-0dbab362f47e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "9ecdbc11-adaf-42ac-a022-f44f771bdfd1", + "lastUpdateDateTime": "2022-02-18T19:08:57Z", + "createdDateTime": "2022-02-18T19:08:57Z", + "expirationDateTime": "2022-02-19T19:08:57Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9ecdbc11-adaf-42ac-a022-f44f771bdfd1?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000618-0000000000001340-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4b528ffc-dfb0-4e59-8697-9ee7c25ffca6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ea01e7b-e737-48e8-bcb7-f0e34bcd2b71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "79" + }, + "ResponseBody": { + "jobId": "9ecdbc11-adaf-42ac-a022-f44f771bdfd1", + "lastUpdateDateTime": "2022-02-18T19:08:57Z", + "createdDateTime": "2022-02-18T19:08:57Z", + "expirationDateTime": "2022-02-19T19:08:57Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 5, + "validDocumentsCount": 4, + "erroneousDocumentsCount": 1, + "transactionsCount": 4 + }, + "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": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js deleted file mode 100644 index df1ea3a29c93..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js +++ /dev/null @@ -1,371 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "bab30c0c76dbf2a445ffbcb16eaccc29"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd61c4737-c406-42bc-be80-797ed12d5b00', - 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Agr9WmM341FOlaCSKM1qYUM; expires=Mon, 22-Nov-2021 00:48:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgkxlN7dh9MPZHZIA70d-cNBK8kd3txHJIZcBHu-poyrjRS4_JYMUVvHuQnFaczSU7R-yC7x7-YHlEamHH00l3JJ-oPPsa97qIKj2OEDQ8hadbyKL8nkNwzh8bEdRbgvjQO7EEzIivqOMfY6fAFS1T0Rxo6BTB-kNsf1pJHxfsQQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:41 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f96df370c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AjKC5YLwoWBLjAR1eIOTmGU; expires=Mon, 22-Nov-2021 00:48:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJO8HfszHZaJD_1x5ua29GgNjG50Kz2IlHX7yEOzG3eDsxHJpWkmpZd3NIqvtXcHr0QY5XtPwGwwIVMkAtWug-08iey_Dgmryr5w010uB7LYZEnejO1lFlrGxupGvgZzg-mG7Dqn7CydexnCZNfuTk2m4N7S5YYZbvIHitOYtzzUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:41 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=580e3648-5db9-4a27-98b1-02bb41a0bbaf&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0e056ee7-0b6b-43db-8e41-750b80b60200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AvmDUy4sYchBoVj--wnEgqc; expires=Mon, 22-Nov-2021 00:48:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:48:41 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52', - 'x-envoy-upstream-service-time', - '213', - 'apim-request-id', - '31dda137-3a58-4436-b438-d8610900b498', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:42Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '66b55baf-b21c-436f-b5ed-c2328771fcb3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:42Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f72a318a-e490-4a04-9bee-4bb5f270b4ee', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:42Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '21d85c7f-5e43-44a8-8c6c-ec8a0658aea8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:42Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '35', - 'apim-request-id', - 'd91bb8d9-4abf-4f9e-aca1-2079174be686', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:42Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - 'e6737005-76c9-4c2d-a3fd-7fffa43c5f55', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:50Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '539ba539-5317-44eb-a5b6-0b1332d86a0d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:50Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - 'fa5c0bc7-e81a-43ca-8048-3750eb175b35', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:50Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'b9fe7577-f5b1-43e4-aa56-a0aa2828f523', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:50Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '7374bd65-f73e-460b-9d08-4c314b153ba8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:56 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:48:50Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'ef8272a5-f855-4764-a854-beaf32852b4c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:48:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:49:01Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '119', - 'apim-request-id', - 'a6ed5189-c073-4963-b09a-52344e2701e0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/38d25eac-199c-4866-a395-690054b27d52') - .query(true) - .reply(200, {"jobId":"38d25eac-199c-4866-a395-690054b27d52","lastUpdateDateTime":"2021-10-23T00:49:01Z","createdDateTime":"2021-10-23T00:48:42Z","expirationDateTime":"2021-10-24T00:48:42Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '94', - 'apim-request-id', - '1d52904a-812c-4dcb-8173-b895fcc42b3f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:00 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json new file mode 100644 index 000000000000..1b34695fc1ef --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json @@ -0,0 +1,592 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "226", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000588-0000000000001273-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "11b8078d-ec5d-4137-85fe-0063b0280df7" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b1fcf08c-2c08-4ea5-b228-f3fde7ce3278", + "Date": "Fri, 18 Feb 2022 19:08:36 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/145e63b5-af9f-4278-aedd-35a7ee2d65f9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/145e63b5-af9f-4278-aedd-35a7ee2d65f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000589-0000000000001275-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5ed79126-4f23-4fd4-931d-ef8caad40594" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4e12e145-341b-4dae-bd7a-939f2f497030", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "jobId": "145e63b5-af9f-4278-aedd-35a7ee2d65f9", + "lastUpdateDateTime": "2022-02-18T19:08:36Z", + "createdDateTime": "2022-02-18T19:08:36Z", + "expirationDateTime": "2022-02-19T19:08:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/145e63b5-af9f-4278-aedd-35a7ee2d65f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000590-0000000000001277-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "66df4c83-1634-4fbc-87c3-16484ec761c6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2d07543c-634a-411b-a874-939f59a42e45", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "145e63b5-af9f-4278-aedd-35a7ee2d65f9", + "lastUpdateDateTime": "2022-02-18T19:08:36Z", + "createdDateTime": "2022-02-18T19:08:36Z", + "expirationDateTime": "2022-02-19T19:08:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/145e63b5-af9f-4278-aedd-35a7ee2d65f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000591-0000000000001279-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "09e1d750-8fec-400a-bc93-ac2c0ba12695" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0af775e7-b3ff-4d6c-b240-f1bb7dd94f80", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "760" + }, + "ResponseBody": { + "jobId": "145e63b5-af9f-4278-aedd-35a7ee2d65f9", + "lastUpdateDateTime": "2022-02-18T19:08:37Z", + "createdDateTime": "2022-02-18T19:08:36Z", + "expirationDateTime": "2022-02-19T19:08:36Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/145e63b5-af9f-4278-aedd-35a7ee2d65f9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000592-0000000000001281-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9728a543-794f-4443-a217-46b431307c5a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "97b1c4aa-8f11-4f91-9e68-cff1dd7fd3c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" + }, + "ResponseBody": { + "jobId": "145e63b5-af9f-4278-aedd-35a7ee2d65f9", + "lastUpdateDateTime": "2022-02-18T19:08:37Z", + "createdDateTime": "2022-02-18T19:08:36Z", + "expirationDateTime": "2022-02-19T19:08:36Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.js deleted file mode 100644 index 765aa1b25eb0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.js +++ /dev/null @@ -1,131 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "79c920925d843070f1cf62ff215ca936"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '24c83905-18fe-427d-9d2f-5c786e06b200', - 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AoU0dgJuhFNBn74GZ2OFcLw; expires=Mon, 22-Nov-2021 00:49:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrj5t-lu8XPSMMEs7QvGciwk3Fe-1qTuWn5nDTFLO80DGBfB-Gip-BwDRZuX_K8U_Z_soQV9tnrjd5XtJJ11WjvBcsqJYjtW3CbCSSL9r7VFvyaTfQHVS1Fu3Z8T-yfLLsIAeQL6Ps6SRe3jnAEUDtbLlfXhbVpvOtkLBSCcMdCcIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:11 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'e7989993-f13e-4656-968d-5b46af290300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ah20J61YoaNJpo2hWuso0AA; expires=Mon, 22-Nov-2021 00:49:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrfuh1xDxL8fIqRQl-fY8S-oHY13wKSHCpaHYZM_ihaN0x3oF_aE8x9EGwyH-iKu2r1_FeZSX--BQ_Lz8pA-72Djc1JOY6Ckm1Tj4faHSTGH8ssL3IUey5g8BsJS7FRg3SLS8S1UzCC0IW_o00IxODhQnmZWyhDygAFSl3HwLoqykgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:11 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=c256f678-baa8-4494-b761-94adb6c68d1c&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec793f200600', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AohWBl3bu9RHqBUF8vWET9lz_bg1AQAAAAdTBdkOAAAA; expires=Mon, 22-Nov-2021 00:49:11 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:11 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 10 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - '189eaa34-8ade-42d2-a6ef-324fd32a80e7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:10 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.json new file mode 100644 index 000000000000..7caa146ff737 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.json @@ -0,0 +1,99 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "544", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000598-0000000000001295-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1c8dfafb-cc92-4af5-898e-d8d941d4abf5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "58c8646b-b462-4184-b6fc-c9631f166d8e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:08:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 10 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js deleted file mode 100644 index 7d6b45395fa8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a96bcc371f39bc4524aa6f00daa000fe"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'c262df95-60f0-4674-9115-12c7d5089901', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=ApaIRn7b5VtJm7GK-ofZycQ; expires=Mon, 22-Nov-2021 00:49:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1--IfEwXWelkW_wWaD8aOaPDyfG6nF5aMNlpWjxFKyjw2xKJhAl7bBeuNaJFM2O9H8d0jzQKTH2UH3u5TCbFoqzMuPnEs-iFRhQIHZrwALjhWQ2lFgVB14W_RmXw5sZm-BigsLAP1CF5jO4v3Ryi8Ue59xLqr5PYV_65ZKEj4JMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:31 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'b9a884ad-e6de-42b8-9cb2-ec79df220600', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AskG0itDaQJJnvUw1d0yObo; expires=Mon, 22-Nov-2021 00:49:31 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKQVyaGade9u1nXFaL3VsQxoEq87npp7bXtwCJyiPkVFyhuRVwIsOK_AfmsY-9olENLLnyrhr9RinFqjLXvb8RdOWF5TEv_9R-z2mWXvzXnTUx7IB-0uVIUjCl4wUXmbXjrigUOz5wy5AbYj-Bzl8wwas54vgWPkpvPaOgSIVU-AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:31 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5709ab75-583c-4aa1-8848-c63070293cd8&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'd41fcaad-27c7-4680-8177-7f969c3b0c00', - 'x-ms-ests-server', - '2.1.12171.14 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArS4ZxiuTJpDtV4GdLgLRR0; expires=Mon, 22-Nov-2021 00:49:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:32 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/75fae865-35bd-4a07-80aa-b47e1e0886b9', - 'x-envoy-upstream-service-time', - '190', - 'apim-request-id', - '22e193ab-b005-47db-8b2b-6a5d9861a480', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/75fae865-35bd-4a07-80aa-b47e1e0886b9') - .query(true) - .reply(200, {"jobId":"75fae865-35bd-4a07-80aa-b47e1e0886b9","lastUpdateDateTime":"2021-10-23T00:49:32Z","createdDateTime":"2021-10-23T00:49:32Z","expirationDateTime":"2021-10-24T00:49:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '35aa5e6c-ea72-4c7f-9a7e-f30fad0df95c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/75fae865-35bd-4a07-80aa-b47e1e0886b9') - .query(true) - .reply(200, {"jobId":"75fae865-35bd-4a07-80aa-b47e1e0886b9","lastUpdateDateTime":"2021-10-23T00:49:32Z","createdDateTime":"2021-10-23T00:49:32Z","expirationDateTime":"2021-10-24T00:49:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '30', - 'apim-request-id', - '98f3f147-6b96-4afb-8297-a3bc32ad5748', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/75fae865-35bd-4a07-80aa-b47e1e0886b9') - .query(true) - .reply(200, {"jobId":"75fae865-35bd-4a07-80aa-b47e1e0886b9","lastUpdateDateTime":"2021-10-23T00:49:33Z","createdDateTime":"2021-10-23T00:49:32Z","expirationDateTime":"2021-10-24T00:49:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '196', - 'apim-request-id', - '4b9fc6ed-60f4-47d2-a434-b8102b4eb2de', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/75fae865-35bd-4a07-80aa-b47e1e0886b9') - .query(true) - .reply(200, {"jobId":"75fae865-35bd-4a07-80aa-b47e1e0886b9","lastUpdateDateTime":"2021-10-23T00:49:33Z","createdDateTime":"2021-10-23T00:49:32Z","expirationDateTime":"2021-10-24T00:49:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '84', - 'apim-request-id', - '3305b385-e704-4229-a360-a7123fd737c8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json new file mode 100644 index 000000000000..ddb4d15363e6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json @@ -0,0 +1,226 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000624-0000000000001354-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "22619799-91e9-48a0-b33c-a37df1aecdca" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9f9f3720-1d8b-4b25-bc23-ef381f3346f5", + "Date": "Fri, 18 Feb 2022 19:09:03 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7ea0aa06-3adb-4f24-8091-3219ba3626d1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7ea0aa06-3adb-4f24-8091-3219ba3626d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000625-0000000000001356-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bc97651b-7022-4494-a999-17c0398b5037" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c33837c-db0a-4531-9fe0-c7fe7da64809", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "7ea0aa06-3adb-4f24-8091-3219ba3626d1", + "lastUpdateDateTime": "2022-02-18T19:09:04Z", + "createdDateTime": "2022-02-18T19:09:03Z", + "expirationDateTime": "2022-02-19T19:09:03Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7ea0aa06-3adb-4f24-8091-3219ba3626d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000626-0000000000001358-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d6fb4301-53f3-4e62-8584-fe8d5d99c3e4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "56791057-519f-45e3-8085-ace8038eb26c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "7ea0aa06-3adb-4f24-8091-3219ba3626d1", + "lastUpdateDateTime": "2022-02-18T19:09:04Z", + "createdDateTime": "2022-02-18T19:09:03Z", + "expirationDateTime": "2022-02-19T19:09:03Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7ea0aa06-3adb-4f24-8091-3219ba3626d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000627-0000000000001360-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "107279c0-460c-481a-a070-1185ca423e90" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "11e32cc0-f5b1-4496-9834-6a069a689518", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "7ea0aa06-3adb-4f24-8091-3219ba3626d1", + "lastUpdateDateTime": "2022-02-18T19:09:04Z", + "createdDateTime": "2022-02-18T19:09:03Z", + "expirationDateTime": "2022-02-19T19:09:03Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7ea0aa06-3adb-4f24-8091-3219ba3626d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000628-0000000000001362-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "04dcca1c-1958-453c-8853-a8beeed53fce" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47a7d959-9ecc-41b9-af1e-9c5fed9b34a8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "7ea0aa06-3adb-4f24-8091-3219ba3626d1", + "lastUpdateDateTime": "2022-02-18T19:09:04Z", + "createdDateTime": "2022-02-18T19:09:03Z", + "expirationDateTime": "2022-02-19T19:09:03Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js deleted file mode 100644 index 96db507a0753..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7b424c93f75bfddb132b20861a2983df"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4754859f-9432-4a05-ab8a-ea2ff62b4f00', - 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Av7nfJiWHy5BkVQur60RrlE; expires=Mon, 22-Nov-2021 00:49:34 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNVvataTO7un6LDGaZwIlPSrP6T-UpoMmW7_Cw7minbTeD_4bTayonUpFYSY40LJ8HfjSufimsfAOW23LbfcKEzU8cvCVI9wMY8bt0YhQlUWPAfUV5MVmCp7dnG98UjeKPS8elNaJUlk7wH5jC2sf99R00HG7SXGV20rqEON8gwUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '079ace24-2c80-48f3-8fab-553a2f0b0400', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsEoOK21EWpEmNp9KRaefDU; expires=Mon, 22-Nov-2021 00:49:34 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9BfbR_UBHn65sYuSp3Vey2tOUEyJtRY4dzrzGjV0m6KZ-a9Uy_8QU2isz6WGb429euiPPpvRDJfT_p9hRf4nsH4qVQxKUfmt70aySXYSJDH70RKqx9MYhlpDPSHLiP1Vv6GV9bZeJ-l2gQCW_PoAZYPrz0aEcSwquAyCLeJiK4AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ebf0408c-9a8c-4197-b62d-1baa02e79d2a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a44383970200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ar2lh15grJhHph6QTAh24-o; expires=Mon, 22-Nov-2021 00:49:35 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:35 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9cdf31a5-db01-4bcf-ac66-9f64e6114e16', - 'x-envoy-upstream-service-time', - '404', - 'apim-request-id', - 'b3c48556-bfdb-4368-bf91-5eb606d740b1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9cdf31a5-db01-4bcf-ac66-9f64e6114e16') - .query(true) - .reply(200, {"jobId":"9cdf31a5-db01-4bcf-ac66-9f64e6114e16","lastUpdateDateTime":"2021-10-23T00:49:35Z","createdDateTime":"2021-10-23T00:49:35Z","expirationDateTime":"2021-10-24T00:49:35Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2ae75932-7ac5-4ffa-a829-f88b3548169d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9cdf31a5-db01-4bcf-ac66-9f64e6114e16') - .query(true) - .reply(200, {"jobId":"9cdf31a5-db01-4bcf-ac66-9f64e6114e16","lastUpdateDateTime":"2021-10-23T00:49:35Z","createdDateTime":"2021-10-23T00:49:35Z","expirationDateTime":"2021-10-24T00:49:35Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '58149ce6-cb4c-4ec5-b67b-f556b4e22fb1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9cdf31a5-db01-4bcf-ac66-9f64e6114e16') - .query(true) - .reply(200, {"jobId":"9cdf31a5-db01-4bcf-ac66-9f64e6114e16","lastUpdateDateTime":"2021-10-23T00:49:36Z","createdDateTime":"2021-10-23T00:49:35Z","expirationDateTime":"2021-10-24T00:49:35Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '405', - 'apim-request-id', - '283e04a2-223e-40cf-9e2c-6a68dab50f28', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9cdf31a5-db01-4bcf-ac66-9f64e6114e16') - .query(true) - .reply(200, {"jobId":"9cdf31a5-db01-4bcf-ac66-9f64e6114e16","lastUpdateDateTime":"2021-10-23T00:49:36Z","createdDateTime":"2021-10-23T00:49:35Z","expirationDateTime":"2021-10-24T00:49:35Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '83', - 'apim-request-id', - 'ad9d8d51-f82c-4eed-97ee-8ad17f103d6e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json new file mode 100644 index 000000000000..1efcace7496c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json @@ -0,0 +1,225 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "202", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000629-0000000000001365-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "125c328d-1af9-4cb6-b8f2-96e459180c07" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e5281c3b-e512-42c2-bf51-e38072a79485", + "Date": "Fri, 18 Feb 2022 19:09:06 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c9738cad-bdfe-44e2-8d60-c47836dd17d3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c9738cad-bdfe-44e2-8d60-c47836dd17d3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000630-0000000000001367-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4c0faa04-3f90-4641-9bba-ed247a8f4228" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71d5ebb1-855a-494b-921a-6eab34c6e6a1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "254" + }, + "ResponseBody": { + "jobId": "c9738cad-bdfe-44e2-8d60-c47836dd17d3", + "lastUpdateDateTime": "2022-02-18T19:09:07Z", + "createdDateTime": "2022-02-18T19:09:07Z", + "expirationDateTime": "2022-02-19T19:09:07Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c9738cad-bdfe-44e2-8d60-c47836dd17d3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000631-0000000000001369-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4c417038-68d3-4eb5-8bcb-08fe14fe105c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c29d6ac-33c5-4c6e-982c-f62a55c37f1e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "c9738cad-bdfe-44e2-8d60-c47836dd17d3", + "lastUpdateDateTime": "2022-02-18T19:09:07Z", + "createdDateTime": "2022-02-18T19:09:07Z", + "expirationDateTime": "2022-02-19T19:09:07Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c9738cad-bdfe-44e2-8d60-c47836dd17d3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000632-0000000000001371-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "eab2dfad-8c7d-4937-bd16-a336775b16c5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "02bf9321-6653-45a5-bec0-b880d1c028ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "c9738cad-bdfe-44e2-8d60-c47836dd17d3", + "lastUpdateDateTime": "2022-02-18T19:09:07Z", + "createdDateTime": "2022-02-18T19:09:07Z", + "expirationDateTime": "2022-02-19T19:09:07Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c9738cad-bdfe-44e2-8d60-c47836dd17d3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000633-0000000000001373-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "80f8615e-1e73-4803-84f8-4cca5db3c785" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a68d5f22-c255-4d75-af64-9e6a1c1c6856", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "jobId": "c9738cad-bdfe-44e2-8d60-c47836dd17d3", + "lastUpdateDateTime": "2022-02-18T19:09:07Z", + "createdDateTime": "2022-02-18T19:09:07Z", + "expirationDateTime": "2022-02-19T19:09:07Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js deleted file mode 100644 index fd08ee4cc0ba..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d196642a2f9b21cd2d043bb992f60916"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4429d26e-d6a5-4b28-b81b-692d531ceb00', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AjSq84mzdFlGjqywcc9lKHw; expires=Mon, 22-Nov-2021 00:49:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4cm3iehtajCrRNErivzycXOng7wYqiOlXw7bT8bVQHIEm2HvGqNoCDCN_PPQQFgc3A4tx71t3nnzUkPpAO5t1BwB6rEW71_EP96gQ3fI6vmnScB5qyMtq5m8syK2dZH42mh_DWiPj_xlmTxhwIYMDGwkMzPlBXviaZmlC7FOLS0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:28 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a2cd2958-2b6c-4be2-887e-774e9ab40300', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ai6XjC2pMHVGn5P1mGlZzQk; expires=Mon, 22-Nov-2021 00:49:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrStaha1llOxmft4sGqhTJRgvCCaUz95mwL74GZ3EzhkSv3Du9OUSKXeA2ZAsZW185XoTkI4Vta9GgWwsyvyjwA0vJM5EYWDqx7EBKHtt04tY8OP0RZacqdhIe-NjqAJDL36TylRFonQS2qBffBdOsFgTyOKVP6lKE35iisX6trmMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:28 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=cecae101-1e87-496c-86a8-98d862644037&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2d5d79f2-2c33-4a96-b75c-c15bfcb40500', - 'x-ms-ests-server', - '2.1.12171.14 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ah6b0JRW7uZIhPjCMPGDXdI; expires=Mon, 22-Nov-2021 00:49:28 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:28 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/87e7c094-9083-4abb-8469-bd1bc7041015', - 'x-envoy-upstream-service-time', - '550', - 'apim-request-id', - '8282176f-ceb9-4a0a-aff7-11bf1d210538', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/87e7c094-9083-4abb-8469-bd1bc7041015') - .query(true) - .reply(200, {"jobId":"87e7c094-9083-4abb-8469-bd1bc7041015","lastUpdateDateTime":"2021-10-23T00:49:28Z","createdDateTime":"2021-10-23T00:49:28Z","expirationDateTime":"2021-10-24T00:49:28Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '9222c2d3-c261-44bb-a061-529a7dfbcb0b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/87e7c094-9083-4abb-8469-bd1bc7041015') - .query(true) - .reply(200, {"jobId":"87e7c094-9083-4abb-8469-bd1bc7041015","lastUpdateDateTime":"2021-10-23T00:49:28Z","createdDateTime":"2021-10-23T00:49:28Z","expirationDateTime":"2021-10-24T00:49:28Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '247ad1c4-53a8-4412-a76c-e35ff088a2c1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/87e7c094-9083-4abb-8469-bd1bc7041015') - .query(true) - .reply(200, {"jobId":"87e7c094-9083-4abb-8469-bd1bc7041015","lastUpdateDateTime":"2021-10-23T00:49:29Z","createdDateTime":"2021-10-23T00:49:28Z","expirationDateTime":"2021-10-24T00:49:28Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '127', - 'apim-request-id', - 'f2e3e2f1-3789-4705-ae5b-2052e3b06f84', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/87e7c094-9083-4abb-8469-bd1bc7041015') - .query(true) - .reply(200, {"jobId":"87e7c094-9083-4abb-8469-bd1bc7041015","lastUpdateDateTime":"2021-10-23T00:49:29Z","createdDateTime":"2021-10-23T00:49:28Z","expirationDateTime":"2021-10-24T00:49:28Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '400', - 'apim-request-id', - 'a895d6d9-04d9-4552-9591-2f6933e2f41f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:31 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json new file mode 100644 index 000000000000..8560904307fc --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json @@ -0,0 +1,226 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000619-0000000000001343-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0545134d-295f-443b-92f9-848d734a9346" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c00808bd-1904-41ea-9330-6841891fc1d5", + "Date": "Fri, 18 Feb 2022 19:09:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36a6b03d-0a75-4778-81b8-20ef958fec96", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "218" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36a6b03d-0a75-4778-81b8-20ef958fec96?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000620-0000000000001345-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8cc88726-30ef-4557-a7a9-f149a5053e50" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "470b46be-55b0-493c-8713-6d49e6afb821", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "36a6b03d-0a75-4778-81b8-20ef958fec96", + "lastUpdateDateTime": "2022-02-18T19:09:00Z", + "createdDateTime": "2022-02-18T19:09:00Z", + "expirationDateTime": "2022-02-19T19:09:00Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36a6b03d-0a75-4778-81b8-20ef958fec96?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000621-0000000000001347-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "424badbf-c376-46d2-914f-4913e8c16a2b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b5a7cec5-c57f-4617-b3be-abef67ffdbfe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "36a6b03d-0a75-4778-81b8-20ef958fec96", + "lastUpdateDateTime": "2022-02-18T19:09:00Z", + "createdDateTime": "2022-02-18T19:09:00Z", + "expirationDateTime": "2022-02-19T19:09:00Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36a6b03d-0a75-4778-81b8-20ef958fec96?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000622-0000000000001349-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "63b3bc41-dd2a-4d7f-be8f-8c94e98f2787" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c8d7ef38-acf6-43ca-a9a2-804cf0041664", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "36a6b03d-0a75-4778-81b8-20ef958fec96", + "lastUpdateDateTime": "2022-02-18T19:09:01Z", + "createdDateTime": "2022-02-18T19:09:00Z", + "expirationDateTime": "2022-02-19T19:09:00Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/36a6b03d-0a75-4778-81b8-20ef958fec96?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000623-0000000000001351-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0f52744b-23da-45a1-8ebd-6eede06751c0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9cd23f90-fbcc-444a-b661-512c03186110", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "94" + }, + "ResponseBody": { + "jobId": "36a6b03d-0a75-4778-81b8-20ef958fec96", + "lastUpdateDateTime": "2022-02-18T19:09:01Z", + "createdDateTime": "2022-02-18T19:09:00Z", + "expirationDateTime": "2022-02-19T19:09:00Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js deleted file mode 100644 index 37b9a2c6271d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js +++ /dev/null @@ -1,211 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "98dc178ac1375fa26068fd73bbef6e47"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '90cb83a9-1322-44ee-aea9-62510692f000', - 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ahm4DkZMfexOjyUYea7jE3A; expires=Mon, 22-Nov-2021 00:49:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJIH_m6SyyZkUvgh4XpnlbJVDS-GCGT_s_otTzVx-56Wa79qe0cPYT3VepdrdaO4XcCrnBU2KWHWVNP1deSTXccmErkVvOzo_oSt6XifSa6tduy2zxrfJasnK7utbi_dYkldgsAMzW7stnEGvWTxj7kHlR0HHuzrAWHn0PMyIB-UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:38 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a8b484cd-0257-49b6-858b-a443b1970200', - 'x-ms-ests-server', - '2.1.12171.14 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ap-m6_vcBx5Aj-AGIF_Z8qg; expires=Mon, 22-Nov-2021 00:49:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYg9EQerFRtU8qcIewcDhgdR8hZTFxUepkaR64j3eQRmrdm0LyNWUZDpOE-rXqtjC1nYjm-NoPX1DFLvUiBabnzsrU5T44vWXcWe5OEyjNwyaBCEQXbkbWpppg0KD0OgCBoF9jB3GI7RgYlWfLUo9TOQqu_5zWrG4SW_u57BCPZ8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:38 GMT', - 'Content-Length', - '1753' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=fa094284-095d-4976-a757-c4b625258e2c&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', - 'Expires', - '-1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '0e056ee7-0b6b-43db-8e41-750b82bd0200', - 'x-ms-ests-server', - '2.1.12171.14 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ak0LOI65J3lDmsn8IFW14Yg; expires=Mon, 22-Nov-2021 00:49:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Sat, 23 Oct 2021 00:49:38 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"I should take my cat to the veterinarian."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/59b11dc3-69b2-4042-ba05-98c541602e8a', - 'x-envoy-upstream-service-time', - '201', - 'apim-request-id', - '99ad4a4b-4368-487b-a71f-eee5dd00f6f6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/59b11dc3-69b2-4042-ba05-98c541602e8a') - .query(true) - .reply(200, {"jobId":"59b11dc3-69b2-4042-ba05-98c541602e8a","lastUpdateDateTime":"2021-10-23T00:49:38Z","createdDateTime":"2021-10-23T00:49:38Z","expirationDateTime":"2021-10-24T00:49:38Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - 'c1a4c51a-23bd-4e09-a0a0-da64ec5fb117', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/59b11dc3-69b2-4042-ba05-98c541602e8a') - .query(true) - .reply(200, {"jobId":"59b11dc3-69b2-4042-ba05-98c541602e8a","lastUpdateDateTime":"2021-10-23T00:49:38Z","createdDateTime":"2021-10-23T00:49:38Z","expirationDateTime":"2021-10-24T00:49:38Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '2ae775dc-c042-4ce0-943e-43ce58a846ba', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/59b11dc3-69b2-4042-ba05-98c541602e8a') - .query(true) - .reply(200, {"jobId":"59b11dc3-69b2-4042-ba05-98c541602e8a","lastUpdateDateTime":"2021-10-23T00:49:39Z","createdDateTime":"2021-10-23T00:49:38Z","expirationDateTime":"2021-10-24T00:49:38Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '218', - 'apim-request-id', - 'cf2995db-5f39-4711-afe1-6a2a904f2fe0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/59b11dc3-69b2-4042-ba05-98c541602e8a') - .query(true) - .reply(200, {"jobId":"59b11dc3-69b2-4042-ba05-98c541602e8a","lastUpdateDateTime":"2021-10-23T00:49:39Z","createdDateTime":"2021-10-23T00:49:38Z","expirationDateTime":"2021-10-24T00:49:38Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '120', - 'apim-request-id', - '49b9425a-b727-4133-8dc4-07b99d9ecb9d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:49:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json new file mode 100644 index 000000000000..e488d1a56b17 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json @@ -0,0 +1,239 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "171", + "Content-Type": "application/json", + "traceparent": "00-00000000000000000000000000000634-0000000000001376-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ba2aae4b-ee3a-4e3b-84ac-781d46fec367" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I should take my cat to the veterinarian." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c8ee0d53-c8e8-4f4e-bad0-f183a80307bb", + "Date": "Fri, 18 Feb 2022 19:09:10 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b67ab00-bc53-4cf8-942b-cc19d8639ae2", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b67ab00-bc53-4cf8-942b-cc19d8639ae2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000635-0000000000001378-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ecec0fa6-c464-465a-8ec6-708db7e7317c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad6b6147-444b-45f2-894e-c9d9a62e2cee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "4b67ab00-bc53-4cf8-942b-cc19d8639ae2", + "lastUpdateDateTime": "2022-02-18T19:09:11Z", + "createdDateTime": "2022-02-18T19:09:10Z", + "expirationDateTime": "2022-02-19T19:09:10Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b67ab00-bc53-4cf8-942b-cc19d8639ae2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000636-0000000000001380-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8f3302ae-f5e8-464a-9a64-351b33f1cf41" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7bea2571-133e-46c8-a26b-29cf437aac10", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "4b67ab00-bc53-4cf8-942b-cc19d8639ae2", + "lastUpdateDateTime": "2022-02-18T19:09:11Z", + "createdDateTime": "2022-02-18T19:09:10Z", + "expirationDateTime": "2022-02-19T19:09:10Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b67ab00-bc53-4cf8-942b-cc19d8639ae2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000637-0000000000001382-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f78d562d-a9d3-40ba-ba25-78ec1ef6869f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9ae7d685-5e3d-48ae-88d4-ccab1271baae", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "185" + }, + "ResponseBody": { + "jobId": "4b67ab00-bc53-4cf8-942b-cc19d8639ae2", + "lastUpdateDateTime": "2022-02-18T19:09:11Z", + "createdDateTime": "2022-02-18T19:09:10Z", + "expirationDateTime": "2022-02-19T19:09:10Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/4b67ab00-bc53-4cf8-942b-cc19d8639ae2?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "traceparent": "00-00000000000000000000000000000638-0000000000001384-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "74d3989d-2ef1-4481-b749-786890778902" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "197fb345-3fb9-4c9a-ad8d-d9d8cf35e9bd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:09:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "4b67ab00-bc53-4cf8-942b-cc19d8639ae2", + "lastUpdateDateTime": "2022-02-18T19:09:11Z", + "createdDateTime": "2022-02-18T19:09:10Z", + "expirationDateTime": "2022-02-19T19:09:10Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js deleted file mode 100644 index 6d179017979e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3507106128a8c3279ca558497e4d0b6b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"1","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"2","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"3","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '86', - 'apim-request-id', - '42f93601-6de3-4b60-91d3-3f0387aa1ec3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json new file mode 100644 index 000000000000..454de27122c5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000002-0000000000000004-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2c969109-8491-4148-9502-44d01e104ce9" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c252dc98-62de-42a3-849a-6554d90aa57a", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:58:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "389" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index f6d86454ad6a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "bd1ef9032ab787da0c6aee257c7d1810"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"1","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"2","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"3","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '82', - 'apim-request-id', - '028250b7-13e3-4b8d-94a7-d518a7ca6358', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..5c3df673bbe6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000003-0000000000000006-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "307ded3f-221c-45d6-ad3c-5dbbff9ceb3f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30395cc1-72a2-4b15-bf01-236832c1ab3d", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:58:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js deleted file mode 100644 index ff71468a1723..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "48ae2bd36a524f40c51f76e37f79ca4a"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"id":"1","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"4","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]},{"id":"5","sentiment":"positive","confidenceScores":{"positive":0.89,"neutral":0.08,"negative":0.03},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.89,"neutral":0.08,"negative":0.03},"offset":0,"length":73,"text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos."}],"warnings":[]},{"id":"6","sentiment":"negative","confidenceScores":{"positive":0.11,"neutral":0.29,"negative":0.6},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.11,"neutral":0.29,"negative":0.6},"offset":0,"length":29,"text":"La carretera estaba atascada."},{"sentiment":"neutral","confidenceScores":{"positive":0.09,"neutral":0.58,"negative":0.33},"offset":30,"length":35,"text":"Había mucho tráfico el día de ayer."}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '112', - 'apim-request-id', - '9f5d01d2-c654-43ba-8c85-e41d79dcfd53', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json new file mode 100644 index 000000000000..f9663b19cb12 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -0,0 +1,231 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000007-0000000000000014-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "86502000-e89c-4ae2-808e-59f24a054e82" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33443c55-dc10-4f14-b708-b2ad4dcc3448", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 18:59:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "273" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.89, + "neutral": 0.08, + "negative": 0.03 + }, + "offset": 0, + "length": 73, + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos." + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.11, + "neutral": 0.29, + "negative": 0.6 + }, + "offset": 0, + "length": 29, + "text": "La carretera estaba atascada." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.09, + "neutral": 0.58, + "negative": 0.33 + }, + "offset": 30, + "length": 35, + "text": "Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer." + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js deleted file mode 100644 index 874bb86ac722..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "01b84290224b19eda44a99f1f5f8866e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"The food and service is not good","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":32,"text":"The food and service is not good","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":13,"length":7,"text":"service","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":28,"length":4,"text":"good","isNegated":true}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '108', - 'apim-request-id', - 'de373dcf-c2ac-4de8-bcc1-1e3166dd5eb7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json new file mode 100644 index 000000000000..fd594314a7ea --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json @@ -0,0 +1,116 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "84", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000009-0000000000000018-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6760927f-7a6e-4ef1-bf42-904608af2bfb" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food and service is not good", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f276b695-88e0-478c-9bfa-faadaeca54ee", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 32, + "text": "The food and service is not good", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 13, + "length": 7, + "text": "service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 28, + "length": 4, + "text": "good", + "isNegated": true + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js deleted file mode 100644 index 0107a3037d50..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "02fc8cd878126d65fa0c1a49402ba0b8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"today is a hot day","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"neutral","confidenceScores":{"positive":0.1,"neutral":0.88,"negative":0.02},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.1,"neutral":0.88,"negative":0.02},"offset":0,"length":18,"text":"today is a hot day","targets":[],"assessments":[]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '105', - 'apim-request-id', - '4b3bc8d8-4474-4b77-bbca-e6e2155c5b38', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json new file mode 100644 index 000000000000..9fa5eb095bb4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json @@ -0,0 +1,71 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "70", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000010-0000000000000020-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "595609c0-da90-4578-8015-540dfe7e7b3a" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "today is a hot day", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "91062806-036e-4bb2-9fe5-90d4b639973f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "133" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.1, + "neutral": 0.88, + "negative": 0.02 + }, + "offset": 0, + "length": 18, + "text": "today is a hot day", + "targets": [], + "assessments": [] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js deleted file mode 100644 index c0175b99f0cb..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "734b436c2a291e8271b3b7d3813b67f7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"It has a sleek premium aluminum design that makes it beautiful to look at.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"offset":0,"length":74,"text":"It has a sleek premium aluminum design that makes it beautiful to look at.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":32,"length":6,"text":"design","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":9,"length":5,"text":"sleek","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":7,"text":"premium","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '104', - 'apim-request-id', - '9f05dc3b-e933-4751-b1a5-8b5c8576cdde', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json new file mode 100644 index 000000000000..3583407921be --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json @@ -0,0 +1,115 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "126", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000008-0000000000000016-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dd0daa5e-8598-402c-be23-0086968b079d" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d2715de-487a-4622-9be4-72d92b9d365d", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.98, + "neutral": 0.02, + "negative": 0.0 + }, + "offset": 0, + "length": 74, + "text": "It has a sleek premium aluminum design that makes it beautiful to look at.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 32, + "length": 6, + "text": "design", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 9, + "length": 5, + "text": "sleek", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 7, + "text": "premium", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js deleted file mode 100644 index c95373820b10..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "da56d9c74392fe1ab68ada4cc5812bcb"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js deleted file mode 100644 index ad6ac0eead4a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a157febd45a30a9364c39af353c5a125"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"The food was unacceptable","language":"en"},{"id":"1","text":"The rooms were beautiful. The AC was good and quiet.","language":"en"},{"id":"2","text":"The breakfast was good, but the toilet was smelly.","language":"en"},{"id":"3","text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","language":"en"},{"id":"4","text":"I had a great unobstructed view of the Microsoft campus.","language":"en"},{"id":"5","text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","language":"en"},{"id":"6","text":"The toilet smelled.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7', - 'x-envoy-upstream-service-time', - '128', - 'apim-request-id', - 'a3ed05d1-8952-4fe9-9bef-f6b7314097d5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json new file mode 100644 index 000000000000..d9fad7a9a659 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json @@ -0,0 +1,700 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit\u0026opinionMining=true", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "622", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000005-0000000000000010-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "492b806d-2bdf-42bb-90eb-2fc1ba1143db" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "97c72233-cc0c-4e23-a9a9-a9acc9dacfdb", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", + "Date": "Fri, 18 Feb 2022 18:58:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js deleted file mode 100644 index 076a55cc776f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "29742e141f59dfc99d625ed5ffffe81f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"offset":0,"length":86,"text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":58,"text":"Unfortunately, it rained during my entire trip to Seattle."},{"sentiment":"neutral","confidenceScores":{"positive":0.01,"neutral":0.7,"negative":0.29},"offset":59,"length":43,"text":"I didn't even get to visit the Space Needle"}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":101,"text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."}],"warnings":[]},{"id":"4","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0.03,"negative":0.96},"offset":0,"length":42,"text":"I didn't like the last book I read at all."}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '98', - 'apim-request-id', - '92d9264d-b638-4a6c-bc6e-a4abd25f3664', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json new file mode 100644 index 000000000000..78a939612ef6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -0,0 +1,181 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "531", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000006-0000000000000012-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a1ee9ebc-2ca6-4c85-852f-d9b4c7a2b7b8" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "67fb5679-7d5e-4c00-8bb6-2807946eaa62", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.99, + "neutral": 0.01, + "negative": 0.0 + }, + "offset": 0, + "length": 86, + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 58, + "text": "Unfortunately, it rained during my entire trip to Seattle." + }, + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.7, + "negative": 0.29 + }, + "offset": 59, + "length": 43, + "text": "I didn\u0027t even get to visit the Space Needle" + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 101, + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.03, + "negative": 0.96 + }, + "offset": 0, + "length": 42, + "text": "I didn\u0027t like the last book I read at all." + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js deleted file mode 100644 index 5e64037e5ee5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "8c94fa8da2c7dc61a44b79f6f91a3472"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/sentiment', {"documents":[{"id":"0","text":"Hello world!","language":"notalanguage"}]}) - .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2020-04-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '27db3bcb-192c-4591-8a93-7a80160daa5f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json new file mode 100644 index 000000000000..b9b19f5879f1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/sentiment?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000004-0000000000000008-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e805373e-9367-4810-8fc2-037987e06aa5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Hello world!", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4dfdce1c-7186-4703-a74b-ae725a35fb7c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:58:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2020-04-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js deleted file mode 100644 index 598831293bc6..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c05939b25e4a8a5b449063e05b2d2fd7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"impossible","countryHint":"fr"}]}) - .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"French","iso6391Name":"fr","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '16f61364-f788-4400-a74b-4d4d487fafaf', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json new file mode 100644 index 000000000000..09f8a8cfd1b0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json @@ -0,0 +1,55 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "65", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000012-0000000000000024-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "41fa7899-1cf0-41e7-85b9-ecac5b0450a4" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "impossible", + "countryHint": "fr" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52a140e1-6676-40c0-9fab-563691c5b097", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "French", + "iso6391Name": "fr", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js deleted file mode 100644 index f6725a43be5d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "9ec7001ef3eb203b0937c0c2e70a4012"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."},{"id":"4","text":"I didn't like the last book I read at all."},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":"mx"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":"mx"}]}) - .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '1c1269d2-6dba-4e62-bc81-5facf9d48df1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json new file mode 100644 index 000000000000..139ac1ef7c4a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -0,0 +1,121 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "651", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000016-0000000000000032-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a05ceec5-ffc3-4564-959a-d41f6b0fe1e7" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected." + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all." + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "mx" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "mx" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc00b97c-13cb-4b19-844f-1bc173126f71", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 18:59:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js deleted file mode 100644 index 4f12d3553bca..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "89cc2d404cb94fe1fea0b7034c65a3d5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":"us"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":"us"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":"us"},{"id":"3","text":"I didn't like the last book I read at all.","countryHint":"us"}]}) - .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '8ec5d9a0-e0e5-41f9-9236-b39a3d771282', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json new file mode 100644 index 000000000000..54dcb7bda7ee --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json @@ -0,0 +1,97 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "506", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000011-0000000000000022-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "db9f08f4-1ffc-4218-ab80-1afd15b46be9" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "us" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "us" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "us" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "us" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fce43d7a-05a7-4f96-8d69-73739739255b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js deleted file mode 100644 index 55f7200547c8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "34a686d31604ca12247f82344cf7f08a"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":""},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":""},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":""},{"id":"4","text":"I didn't like the last book I read at all.","countryHint":""},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":""},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":""}]}) - .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '23bb1ff3-c7bf-465e-874c-e43b8291bdf1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json new file mode 100644 index 000000000000..b2c354f49796 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -0,0 +1,125 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "715", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000014-0000000000000028-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "43c31285-8662-422c-9bde-e482a3c6a4da" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "countryHint": "" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "countryHint": "" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "countryHint": "" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "countryHint": "" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "countryHint": "" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "40f64202-daaa-4c75-b948-abcc93489251", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 18:59:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "2", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "3", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "4", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 1.0 + }, + "warnings": [] + }, + { + "id": "5", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 0.99 + }, + "warnings": [] + }, + { + "id": "6", + "detectedLanguage": { + "name": "Spanish", + "iso6391Name": "es", + "confidenceScore": 1.0 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js deleted file mode 100644 index f9ace5bf989c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ef69fca0065615995d37fba2821ced2e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"I use Azure Functions to develop my service.","countryHint":""}]}) - .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":0.95},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '06ac8865-eb7b-4caa-bd87-f21c2460f777', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json new file mode 100644 index 000000000000..c217fbca8f48 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -0,0 +1,55 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "97", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000013-0000000000000026-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b91b7ac9-502f-464b-ba73-40b471d72246" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I use Azure Functions to develop my service.", + "countryHint": "" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c346c7a5-5a57-4e5c-ae5f-196acfeb4b79", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "detectedLanguage": { + "name": "English", + "iso6391Name": "en", + "confidenceScore": 0.95 + }, + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js deleted file mode 100644 index ce14b08bdfab..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0f2053daa7f89a4ab190012374379df9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js deleted file mode 100644 index 0bd8146abb0e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js +++ /dev/null @@ -1,24 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b5935ccd1f790970d86fe93b4a0414a9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/languages', {"documents":[{"id":"0","text":"hello","countryHint":"invalidcountry"}]}) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Country Hint.","innererror":{"code":"InvalidCountryHint","message":"Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code."}}}],"modelVersion":"2021-01-05"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '4', - 'apim-request-id', - '5f6eaa85-c1a0-4d7c-b854-1640967e3c46', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json new file mode 100644 index 000000000000..1c91428f65f7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/languages", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "72", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000015-0000000000000030-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cfd72c25-2c6a-4720-b0a4-a2624c7dd652" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "hello", + "countryHint": "invalidcountry" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "432f651b-e452-4c7e-93da-d03666287639", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "message": "Invalid Country Hint.", + "innererror": { + "code": "InvalidCountryHint", + "message": "Country hint is not valid. Please specify an ISO 3166-1 alpha-2 two letter country code." + } + } + } + ], + "modelVersion": "2021-11-20" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index 9e9ec1f48106..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ff532ec002c3a730a118f602c709956e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .reply(200, {"documents":[{"id":"1","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["entire trip","Space Needle","Seattle"],"warnings":[]},{"id":"3","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"4","keyPhrases":["last book"],"warnings":[]},{"id":"5","keyPhrases":["Monte Rainier","caminos"],"warnings":[]},{"id":"6","keyPhrases":["mucho tráfico","día","carretera","ayer"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - 'dd2bfce2-fb3d-4249-9482-2b657aa50141', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..2b945e40b725 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,122 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000025-0000000000000050-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ecc92ef5-aeb0-4c43-84dd-890af9308c7e" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53ff0376-963d-434d-a738-3d133996071c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "Date": "Fri, 18 Feb 2022 18:59:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "last book" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "Monte Rainier", + "caminos" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "mucho tr\u00E1fico", + "d\u00EDa", + "carretera", + "ayer" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index d151a6032144..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ad87a0e6d3e4602e10fad4d7f20878a3"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - 'b0ccd20d-bdfb-48fb-871d-b42590e3f159', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..d73ca1f6f5f7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,94 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000023-0000000000000046-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4440e977-fca6-403f-8658-15157ad88542" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5f5d37d5-c49b-48b5-b156-70f38fbf2e97", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index 52da187626de..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,26 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c75abe4f2185017d992d99f9801ed2b0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '1967', - 'apim-request-id', - 'a074cfe2-3beb-462f-ad6d-2e18236b4680', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..5cae60713c8a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,94 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000022-0000000000000044-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9033d2f4-4ab3-4e8a-a41a-b81e63ddf327" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e80596ea-9fda-4257-8d93-d5909e0a32a8", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "wonderful trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "entire trip", + "Space Needle", + "Seattle" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "movie", + "Saturday" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "last book" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js deleted file mode 100644 index 5ca4232a9555..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1da9dde1005954f5437f8bb9acccb669"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index 5af92477ae45..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,24 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "07ba90642ab2e400b301dc4c52ba2470"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/keyPhrases', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '2', - 'apim-request-id', - '6fb5e803-207c-458b-8a33-cd82ec45ed93', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..2e7951b79382 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/keyPhrases", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000024-0000000000000048-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "222c00a2-ee68-4af4-9cdd-6e0fed39084c" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99f03562-1a42-4873-95f2-e4934abe937a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index 8f34d467d609..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "23549fef03bb60ac4471d7a0e28e0946"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"id":"1","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.61},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.96},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.82},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"Monte Rainier","category":"Location","offset":29,"length":13,"confidenceScore":0.85}],"warnings":[]},{"id":"5","entities":[{"text":"carretera","category":"Location","offset":3,"length":9,"confidenceScore":0.81},{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - '39ed73d3-efb4-417f-85f7-5bdec608293d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..a661319582ae --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,186 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000020-0000000000000040-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bd66b60c-ee23-4c74-9aaf-0c777e55db9a" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d722031a-5f60-484d-a0f9-510a506c9308", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 18:59:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "Monte Rainier", + "category": "Location", + "offset": 29, + "length": 13, + "confidenceScore": 0.85 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "carretera", + "category": "Location", + "offset": 3, + "length": 9, + "confidenceScore": 0.81 + }, + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index 02fec1723075..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "83584ef1a3c2eeae474a1cfee3684ba8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.61},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.96},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.82},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.92}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.92}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '4fbffb4b-e6b5-4b91-8aa4-c27c569639b9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..14303cec2f84 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,160 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000018-0000000000000036-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "37293115-4fd8-4240-8ccf-1c054fcfbd1d" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "43fbba90-9e70-4fd5-8e56-58ba9a63c46c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index b01b0041a675..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7fb8abf5b43b82fbe7da1ad591b70f07"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.61},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.96},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.82},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.92}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.92}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '20', - 'apim-request-id', - 'a3ef3935-4e0f-486e-86a6-b57223804a74', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..ba65b5ff07bc --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,160 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000017-0000000000000034-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0ba4f3ae-887f-49b3-9f85-47e56edb7ffb" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2d3568b9-477b-4215-92ba-2fb2db917b60", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 18, + "length": 4, + "confidenceScore": 0.61 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 26, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 65, + "length": 12, + "confidenceScore": 0.96 + }, + { + "text": "2", + "category": "Quantity", + "subcategory": "Number", + "offset": 78, + "length": 1, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "trip", + "category": "Event", + "offset": 42, + "length": 4, + "confidenceScore": 0.82 + }, + { + "text": "Seattle", + "category": "Location", + "subcategory": "GPE", + "offset": 50, + "length": 7, + "confidenceScore": 1.0 + }, + { + "text": "Space Needle", + "category": "Location", + "offset": 90, + "length": 12, + "confidenceScore": 0.92 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "book", + "category": "Product", + "offset": 23, + "length": 4, + "confidenceScore": 0.92 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js deleted file mode 100644 index e3887860f0a1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '3014e50e-4da9-44b5-8bc3-7d8460f46b4a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json new file mode 100644 index 000000000000..197aa19f7c5e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000021-0000000000000042-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e2c9ced1-f53a-4cd2-bc0f-05399f43354c" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "d4faa034-3372-429b-a819-36f004df6ba2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js deleted file mode 100644 index 1185910205a2..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "bbec3f3747719fefd0480adad1387e7d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index b222a012a712..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d15e29b1e7c287a6a7f9f4eb38f2a277"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '3cc2a210-f647-4ec5-9c42-8030f81f67d3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..9f114af675f5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000019-0000000000000038-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f75e4360-750c-4685-81b1-9b1bf7c15680" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ce4d349c-d39b-4064-a41d-7b4a6478558f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index b9bfe36fc7ac..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "9063fb3ac884b0e8a06b081f163417b9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"id":"1","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":26,"length":7,"confidenceScore":0.21}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":65,"length":12,"confidenceScore":0.42}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"2","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":50,"length":7,"confidenceScore":0.2}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":90,"length":12,"confidenceScore":0.36}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"3","entities":[{"bingId":"296617ab-4ddb-cc10-beba-56e0f42af76b","name":"Saturday","matches":[{"text":"Saturday","offset":25,"length":8,"confidenceScore":0.05}],"language":"en","id":"Saturday","url":"https://en.wikipedia.org/wiki/Saturday","dataSource":"Wikipedia"}],"warnings":[]},{"id":"4","entities":[{"bingId":"9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906","name":"Monte Rainier","matches":[{"text":"Monte Rainier","offset":29,"length":13,"confidenceScore":0.81}],"language":"es","id":"Monte Rainier","url":"https://es.wikipedia.org/wiki/Monte_Rainier","dataSource":"Wikipedia"}],"warnings":[]},{"id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', - 'x-envoy-upstream-service-time', - '44', - 'apim-request-id', - 'ecce7693-b9a4-4562-8676-3afc72f7860d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..48e994bb1b8b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,191 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000039-0000000000000078-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ad5bc4fb-767d-44ba-b058-e21d0261d8b8" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4964ee30-f274-4218-8c79-b4b74c869284", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 18:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "documents": [ + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "bingId": "9ae3e6ca-81ea-6fa1-ffa0-42e1d7890906", + "name": "Monte Rainier", + "matches": [ + { + "text": "Monte Rainier", + "offset": 29, + "length": 13, + "confidenceScore": 0.81 + } + ], + "language": "es", + "id": "Monte Rainier", + "url": "https://es.wikipedia.org/wiki/Monte_Rainier", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index 0d0d95c3a6d8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "40df1b35e0e23c65c61cb7f625d8c956"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":26,"length":7,"confidenceScore":0.21}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":65,"length":12,"confidenceScore":0.42}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":50,"length":7,"confidenceScore":0.2}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":90,"length":12,"confidenceScore":0.36}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"2","entities":[{"bingId":"296617ab-4ddb-cc10-beba-56e0f42af76b","name":"Saturday","matches":[{"text":"Saturday","offset":25,"length":8,"confidenceScore":0.05}],"language":"en","id":"Saturday","url":"https://en.wikipedia.org/wiki/Saturday","dataSource":"Wikipedia"}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '1080b092-3fb8-4f2e-aaa2-df3de8f05cfc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..4453b24d3c8d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000037-0000000000000074-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3c69eda0-d1f7-4a5d-83b5-f968469b4263" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd61374c-6728-41fe-b93b-8460fe7e1244", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index 60d876a55ed3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fd9441430a75f4afcd27d4647131a0f0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":26,"length":7,"confidenceScore":0.21}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":65,"length":12,"confidenceScore":0.42}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"5fbba6b8-85e1-4d41-9444-d9055436e473","name":"Seattle","matches":[{"text":"Seattle","offset":50,"length":7,"confidenceScore":0.2}],"language":"en","id":"Seattle","url":"https://en.wikipedia.org/wiki/Seattle","dataSource":"Wikipedia"},{"bingId":"f8dd5b08-206d-2554-6e4a-893f51f4de7e","name":"Space Needle","matches":[{"text":"Space Needle","offset":90,"length":12,"confidenceScore":0.36}],"language":"en","id":"Space Needle","url":"https://en.wikipedia.org/wiki/Space_Needle","dataSource":"Wikipedia"}],"warnings":[]},{"id":"2","entities":[{"bingId":"296617ab-4ddb-cc10-beba-56e0f42af76b","name":"Saturday","matches":[{"text":"Saturday","offset":25,"length":8,"confidenceScore":0.05}],"language":"en","id":"Saturday","url":"https://en.wikipedia.org/wiki/Saturday","dataSource":"Wikipedia"}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '95bf05b9-feaf-4c60-b9c3-ba0bc484f922', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..f5b1c6451f8f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,164 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000036-0000000000000072-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a9fbfe4e-2c8d-4efc-9f69-bf407a965f98" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53152616-1e6e-4f60-9216-f650093bf6d7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 26, + "length": 7, + "confidenceScore": 0.21 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 65, + "length": 12, + "confidenceScore": 0.42 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "5fbba6b8-85e1-4d41-9444-d9055436e473", + "name": "Seattle", + "matches": [ + { + "text": "Seattle", + "offset": 50, + "length": 7, + "confidenceScore": 0.2 + } + ], + "language": "en", + "id": "Seattle", + "url": "https://en.wikipedia.org/wiki/Seattle", + "dataSource": "Wikipedia" + }, + { + "bingId": "f8dd5b08-206d-2554-6e4a-893f51f4de7e", + "name": "Space Needle", + "matches": [ + { + "text": "Space Needle", + "offset": 90, + "length": 12, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Space Needle", + "url": "https://en.wikipedia.org/wiki/Space_Needle", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "bingId": "296617ab-4ddb-cc10-beba-56e0f42af76b", + "name": "Saturday", + "matches": [ + { + "text": "Saturday", + "offset": 25, + "length": 8, + "confidenceScore": 0.05 + } + ], + "language": "en", + "id": "Saturday", + "url": "https://en.wikipedia.org/wiki/Saturday", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js deleted file mode 100644 index ba2593e699c7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'c3644255-89f0-4203-98b2-9eadef6f7490', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json new file mode 100644 index 000000000000..f85e8aae5c80 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "709", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000040-0000000000000080-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "842798aa-af98-4b86-8e25-67b35542cf5c" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + }, + { + "id": "5", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "6", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "6542985a-1284-48b9-b29d-012e26d532e9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 5 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js deleted file mode 100644 index b70a1257a453..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a18c30f77c1c7c0ed35bbd9a51da7e8d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f721723386d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json @@ -0,0 +1,4 @@ +{ + "Entries": [], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index 3d540e814f57..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fad55cf856722b5497b225d29f822c2b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/linking', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .query(true) - .reply(200, {"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=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '34ae435b-6523-42b4-aa50-4c14a13064c6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..01f842a6ae50 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000038-0000000000000076-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5b80a180-d76e-475b-b878-eafc4d31de3d" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ed6cb271-be9d-4cf4-9ed3-2e9b22516128", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "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=named-entity-recognition" + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js deleted file mode 100644 index 5f2c8276d6d1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0503abe68a40b8eb9a93ee2d07ce5d93"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"I work at Microsoft and my phone number is 333-333-3333","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I work at ********* and my phone number is ************","id":"0","entities":[{"text":"Microsoft","category":"Organization","offset":10,"length":9,"confidenceScore":0.94},{"text":"333-333-3333","category":"PhoneNumber","offset":43,"length":12,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '37', - 'apim-request-id', - '618b18ec-1138-47f5-baef-8e88f6a1f1db', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json new file mode 100644 index 000000000000..25aa8f6b2c0c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json @@ -0,0 +1,67 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026domain=PHI", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "107", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000032-0000000000000064-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "10a91f0e-8bcd-447c-9042-681f508d1cbc" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I work at Microsoft and my phone number is 333-333-3333", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "da1dfbb3-9583-47a2-8630-9aed290da712", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I work at ********* and my phone number is ************", + "id": "0", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 10, + "length": 9, + "confidenceScore": 0.94 + }, + { + "text": "333-333-3333", + "category": "PhoneNumber", + "offset": 43, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js deleted file mode 100644 index b6c1809ae05c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e022d94350f7224141f9cd7cdfdf4cc3"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '33', - 'apim-request-id', - 'af63e2b9-04fd-459b-aacd-d557d34e1f0b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json new file mode 100644 index 000000000000..96a932792255 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000033-0000000000000066-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e2d42550-a1ed-4097-9978-ade99e0ae858" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0aa1ed2e-6131-4106-baa3-c3f1506d8cf9", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js deleted file mode 100644 index 6b33dedfa9be..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c102b5dfd1ffe2c563f80ba16ae00455"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"1","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","id":"2","entities":[],"warnings":[]},{"redactedText":"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.","id":"3","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","id":"4","entities":[],"warnings":[]},{"redactedText":"La carretera estaba atascada. Había mucho tráfico el día de ****.","id":"5","entities":[{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', - 'x-envoy-upstream-service-time', - '38', - 'apim-request-id', - '0276e8bc-d63b-454e-9244-bb985faed04e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..bcd1dbfec22a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,123 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "630", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000031-0000000000000062-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0078eeb9-5e6d-4ca1-8ddb-09fce0a38f31" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "2", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "3", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "4", + "text": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "language": "es" + }, + { + "id": "5", + "text": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ayer.", + "language": "es" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "67c8e043-ad73-4e65-bb61-cbe119ad5721", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "Date": "Fri, 18 Feb 2022 18:59:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "1", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "3", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "La carretera estaba atascada. Hab\u00EDa mucho tr\u00E1fico el d\u00EDa de ****.", + "id": "5", + "entities": [ + { + "text": "ayer", + "category": "DateTime", + "subcategory": "Date", + "offset": 60, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js deleted file mode 100644 index 72bf9aba90ae..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "4e3cd609c00a705d03d31f2bf28dfaa2"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","id":"1","entities":[],"warnings":[]},{"redactedText":"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.","id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"I didn't like the last book I read at all.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - '9a9b3df9-526d-47ef-8f89-6036b56abc73', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..cc3dfca09ab3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,103 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000028-0000000000000056-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1fff3cc3-55d3-4fb3-ad0d-5480257716f1" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "49c6c337-9785-4944-93d2-9407ce521fae", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js deleted file mode 100644 index 1807db43e53c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fcd73fcb0c4205d92a523635756d6383"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","id":"1","entities":[],"warnings":[]},{"redactedText":"I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.","id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"redactedText":"I didn't like the last book I read at all.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', - 'x-envoy-upstream-service-time', - '35', - 'apim-request-id', - '06df241a-6d5b-4159-90a3-f3cf9f10748d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..5e3f8aff7f0d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,103 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "494", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000027-0000000000000054-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "63a84d54-8814-4c7a-9e2a-5f786f09bfc0" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", + "language": "en" + }, + { + "id": "1", + "text": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "language": "en" + }, + { + "id": "2", + "text": "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", + "language": "en" + }, + { + "id": "3", + "text": "I didn\u0027t like the last book I read at all.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75de309b-c248-4e56-b3c9-a5174ace173c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "Date": "Fri, 18 Feb 2022 18:59:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!", + "id": "0", + "entities": [ + { + "text": "last week", + "category": "DateTime", + "subcategory": "DateRange", + "offset": 34, + "length": 9, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Unfortunately, it rained during my entire trip to Seattle. I didn\u0027t even get to visit the Space Needle", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I went to see a movie on ******** and it was perfectly average, nothing more or less than I expected.", + "id": "2", + "entities": [ + { + "text": "Saturday", + "category": "DateTime", + "subcategory": "Date", + "offset": 25, + "length": 8, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "I didn\u0027t like the last book I read at all.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js deleted file mode 100644 index 29c919b8e771..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "630be62a5cda2962b4bbaad3db24f9e1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Your Social Security Number is 859-98-0987.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Your Social Security Number is ***********.","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - 'b33c7d73-eb33-4baf-b6d5-42cc2cb7e8e4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json new file mode 100644 index 000000000000..8134db158092 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "95", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000029-0000000000000058-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f84dd7db-98d7-4d00-b15e-ccd24dce6c43" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Your Social Security Number is 859-98-0987.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f54c84d-efc2-4e0e-9061-2e4469d2e0a0", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Your Social Security Number is ***********.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js deleted file mode 100644 index efa4262e4c6b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ab91690f5ef35c8898e38f3c835cbc21"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid Request.","innererror":{"code":"MissingInputRecords","message":"Missing input records."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - 'fcacd39c-1876-4b8d-8c5d-0764ab245f52', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..94367acc2788 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json @@ -0,0 +1,43 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "16", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000026-0000000000000052-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a8768bcc-b227-4362-aa67-db2f16adac22" + }, + "RequestBody": { + "documents": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "76d65e89-1237-4437-bfe0-484745c5e7d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid Request.", + "innererror": { + "code": "MissingInputRecords", + "message": "Missing input records." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js deleted file mode 100644 index 9a538d456d91..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js +++ /dev/null @@ -1,49 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ccbce5fd6d6bbc1f2ea2f7507f99ae07"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Patient name is *** and SSN is ***********","id":"0","entities":[{"text":"Joe","category":"Person","offset":16,"length":3,"confidenceScore":0.78},{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '33', - 'apim-request-id', - 'd6091b41-2814-4a8c-8f96-d04f7e3bbde9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '34', - 'apim-request-id', - '62d100cd-b3fd-4245-8729-6892bfdd0686', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json new file mode 100644 index 000000000000..3173ebe5ca75 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json @@ -0,0 +1,122 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000034-0000000000000068-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "32f7a30c-dff4-40ec-8ac3-525b7e66501e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bffa3e7-0e10-4632-8d96-52df1ed24552", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is *** and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "Joe", + "category": "Person", + "offset": 16, + "length": 3, + "confidenceScore": 0.78 + }, + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit\u0026piiCategories=USSocialSecurityNumber", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000035-0000000000000070-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ec4434e3-2a1a-4ded-82ae-4c87283a0a3d" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient name is Joe and SSN is 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aaef8467-c822-408a-bdcf-5b1d1091ba03", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "Patient name is Joe and SSN is ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 31, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js deleted file mode 100644 index 8d4549d2d35b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7a84168b9a25f213e63eae0d9e947364"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '3', - 'apim-request-id', - '52c79f4b-39bd-4f9d-982d-b7aefd60f115', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..345be620b93e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,56 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000030-0000000000000060-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "23d9d0b7-ba7d-45df-909e-041dc08b9ef8" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This is some text, but it doesn\u0027t matter.", + "language": "notalanguage" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d9a46987-697f-47cd-95b5-af93c641de86", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "2" + }, + "ResponseBody": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js deleted file mode 100644 index a8c73423d8f4..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "5bf2e604e0628fd3b31f70ada6ce84f6"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '32', - 'apim-request-id', - 'ccfa45a1-42b4-4dea-87df-e1c67c8fddef', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json new file mode 100644 index 000000000000..f2cfc5497662 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000045-0000000000000090-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b82aabb2-b385-4e2c-a90a-967f027bbe36" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5f2d1ba5-fa60-423f-bc64-9fe05aacc1a6", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js deleted file mode 100644 index 3614470cdd1d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0f494b4e64cd921825d9a4e50c6dbda1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '01384829-179e-41c4-91ed-0966576f2628', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json new file mode 100644 index 000000000000..29020ad6f801 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000046-0000000000000092-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "620b00e4-a36c-48d7-b1c1-b3544748691e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5982e32f-03db-4793-8622-6b294db2fd42", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js deleted file mode 100644 index 7c78dccc4243..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "8bfa650b81f420a536e37e515893d93e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - 'dbbc5217-e78f-4ffa-a507-4e13aabb1fc1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json new file mode 100644 index 000000000000..3884526a3cf1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000041-0000000000000082-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6da7e0d7-e1b3-4c4f-93cf-66974d1f03ec" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e633069-6837-4f0e-8443-408469a72398", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 55d6525475d3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "8ae61a024f008f240e95480d720e5a8f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '33', - 'apim-request-id', - 'ce628cec-3fd4-4d5b-ac2d-614fb5f98d3e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..4b1f4aab2bb2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000042-0000000000000084-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9176dd32-fbb4-4841-a77b-bb15db30081f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c8f3681-8b26-4f6d-80d3-cfb5c21d9273", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js deleted file mode 100644 index c7300f62fe0b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3c85f6e020029eb63af79a1fb11eb3b9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '39', - 'apim-request-id', - 'ec7c3c4f-3b2b-477f-9972-f8b08e3d05d3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json new file mode 100644 index 000000000000..b75c1dcfdd0e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000043-0000000000000086-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9240dc93-1199-441b-aaa4-d2a5d9b8db6c" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1063be61-d851-4f4f-a88d-c7300bc8a4a0", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.js deleted file mode 100644 index ac94172217a9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d608400bb61b4dcbcb0e6a1c9134135f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":25,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - 'a02b9a8e-5101-471b-838c-27c5bc82023a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..f419a1dcd86c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000044-0000000000000088-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f5db8967-86d1-4051-8bb5-d4f6213ee07c" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "47f7897e-ef08-4ad5-ba90-cb21ead833fc", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 25, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js deleted file mode 100644 index a36ec9b9f17f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '2b7a747b-ea2a-40f0-b0c4-92089a2a79c7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json new file mode 100644 index 000000000000..de06a2cf32a6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000047-0000000000000094-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d19f915e-7874-43a2-bbca-9c6ca48d8da7" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94b413e9-0ec5-4f84-86d2-a7b3a859b584", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js deleted file mode 100644 index 164c52ceb370..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '34', - 'apim-request-id', - '5494701f-809e-4769-ad7a-9e071c5ad5ba', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json new file mode 100644 index 000000000000..cdf4bbd88333 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000048-0000000000000096-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7cf14997-4e33-4306-975d-23905e3a3220" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8110e68b-948f-42e1-ba9f-3602edf7b4fb", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js deleted file mode 100644 index 8dde6ec7d0b7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "54fd02130ea13f400927c60587190bde"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '00293e91-4abd-47d8-9db1-922abc1e8f41', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json new file mode 100644 index 000000000000..456a2d09d974 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000049-0000000000000098-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7254983a-0713-461c-8587-1352bce7bc3a" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e77c1a78-e164-4bde-a3d0-83bbb39a6ff7", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js deleted file mode 100644 index 91fdb5bc8cd1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "89a51aa4719dd90f068e5b56f6377757"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - 'df1d9343-e351-48cb-95b2-ca2774fc7dc0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json new file mode 100644 index 000000000000..6a6a3e029bd6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000063-0000000000000126-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "186790c2-d8ba-408c-8a6c-9ed940e460de" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41f9e2e9-47d2-43e3-84b1-626d278edc0e", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js deleted file mode 100644 index 3a1caacaafdb..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1d119e0985c97360d15d4d8824690d99"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '9036cf7d-5c5c-4d7b-9cd1-44eb5649a7b2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json new file mode 100644 index 000000000000..37445304fd67 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000064-0000000000000128-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "16b2b929-e6ae-47f4-9db2-b5fea800e850" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "217c5e66-4701-44ba-bf23-8f06f830277b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js deleted file mode 100644 index b62fd3c57b97..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "83521e8e248437ee2888e1997b206de7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - '1f86afb5-23e4-4a39-bc75-f5d15a7ca343', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json new file mode 100644 index 000000000000..cc0c20cbfc1a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000059-0000000000000118-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8c485383-afcc-41e1-b226-162013070abe" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1080c4e5-6bfa-4d70-9922-8964e083a4b3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 1dc32a20e4c7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "38e0c461acfe3ddca957670d86bdac0d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - 'cff1f361-16b1-4957-90b2-c59bb23d9036', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..018949371725 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000060-0000000000000120-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "89e1c0c2-d847-44f0-8b00-014f541594d2" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e04f252-7826-4d2c-82a1-7c88144cccbd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js deleted file mode 100644 index bd63df763a56..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f9f7157c7614ec76faec095e88df709e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - '249aa214-19a2-4b8f-9853-ffaaceffe313', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json new file mode 100644 index 000000000000..85b886a92f33 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000061-0000000000000122-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3407213c-c6c3-4a6a-821a-48ccd7e86a7e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6dcfe337-f614-49b3-9485-d47e18859d39", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.js deleted file mode 100644 index b2f3392fb465..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "83e235083503e938867e37c3a69e1f27"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '279ce7ca-0c54-4d55-aa23-8668f8d92dec', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..860efbdc6e7c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000062-0000000000000124-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6e33f6cd-d0b5-4e10-b0d6-8f7dfd80aca9" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dece0b26-1dfd-4aea-8fde-0cfa8881d16b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js deleted file mode 100644 index 02d530e0b7eb..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '59ec40cf-70b0-4c44-9edd-b2de0f276e15', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json new file mode 100644 index 000000000000..19a558241f67 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000065-0000000000000130-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b3731538-3981-4fbb-b257-a2be8e9549ce" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b924d9b-488c-4072-936c-bb1968794395", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js deleted file mode 100644 index 3771cf076a49..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '0afe1333-d9d6-41e5-bf4c-ecea560143b8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json new file mode 100644 index 000000000000..350bf235e6af --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000066-0000000000000132-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8c2de250-7d10-4cd1-93f2-794fe1f564e0" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77632087-777d-494a-8616-0960cb6d8edd", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js deleted file mode 100644 index de002525babd..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3d8f5ff2696a159219b33712bbe0cd93"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - 'b0a2aa19-1ce3-44cb-930f-11c9955adef7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:43 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json new file mode 100644 index 000000000000..ec51996301b9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=TextElement_v8", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000067-0000000000000134-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1f38e871-e191-4c1b-b3c8-b70a213fcd4e" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f211e6ad-82bc-47a5-b239-b01259a17203", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js deleted file mode 100644 index d0df97bf3c66..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "75554aece4db56a794c8fd18e29f84aa"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '26', - 'apim-request-id', - 'd31ede1a-14db-4953-aeb1-6a7a9a28785b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json new file mode 100644 index 000000000000..33d9b0cb3415 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000054-0000000000000108-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "75250201-f59e-4f7a-8448-b3e303bc3763" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "a\u00F1o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8cd70385-cf9d-48d2-abaa-298a0814a16c", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "30" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "a\u00F1o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 9, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js deleted file mode 100644 index 77f289ca5ab9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "29c8e9f857f7d02d5af8c0102f103450"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '33', - 'apim-request-id', - 'da57448d-831f-4b74-815d-67acefe52ad9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json new file mode 100644 index 000000000000..dccd0324b7b7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "74", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000055-0000000000000110-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d7f746a1-fb17-462d-9256-e166da3f1be1" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "an\u0303o SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5ba45a1-3c0a-4814-a84c-94fa7fd17f29", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "26" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "an\u0303o SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js deleted file mode 100644 index 02d687a574f4..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "12b6a334f86fe91d41114a8211ae608e"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '4232c3f0-051d-45c3-877b-ec87d76f603c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json new file mode 100644 index 000000000000..51d2e85942ef --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "73", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000050-0000000000000100-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1e7ca25b-36da-494a-9b47-9973ef811105" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e833050e-03c7-44e6-b59a-d936d33a1335", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 7, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 0fb68c60b12d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7c8d4de95da91bbbef328a9fd5fde2f1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '8c7d8bb9-8cb8-4ecb-b9a8-e9d279c221f2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..5da4314c1075 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "77", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000051-0000000000000102-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "84c372f2-bfbb-4110-accf-7df157b30584" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d977f37-ef16-4ad8-84a4-8920338d09f3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js deleted file mode 100644 index 2b5e97ba6c48..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6e5e53c2e27941c69921ae711a3d42b5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '5e7d08f5-6a84-4894-af88-2362c2fc27e2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json new file mode 100644 index 000000000000..9ee57f0c46aa --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "94", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000052-0000000000000104-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b4dfa091-3072-4991-97ee-609b9d13afde" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9648c1d8-2e6e-41ab-8e81-ccfa6b18641d", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "28" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC67 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 13, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.js deleted file mode 100644 index d871129732a2..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d2d93f114abe1fa04b62c793fc5dc2c9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - 'c1758e12-0ed8-4a60-99f1-a7f8fd812402', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..196d6e55e8ed --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_with_skin_tone_modifier.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "110", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000053-0000000000000106-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bf40809a-abdc-44ec-82ab-464f0c4e5a12" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "457250d8-e400-49f7-a85a-c5f4777e4ced", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "34" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js deleted file mode 100644 index 47d5cacb504c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - '7cd4049d-dd5b-431a-bc0a-a8de62acb317', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json new file mode 100644 index 000000000000..f75960050fed --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000056-0000000000000112-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "820e76de-1498-4e07-ab76-e8078d856b1f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "972fcc49-cddb-4edf-9f38-297918671e9b", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "31" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js deleted file mode 100644 index c850c89dd005..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - '94a26c23-972f-4ab8-9809-af98d227497d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json new file mode 100644 index 000000000000..3e063fc72c61 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "75", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000057-0000000000000114-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "434f639c-9532-4155-8d67-f987884a9573" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uC544\uAC00 SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "29fec400-9fef-4831-8b17-0f8ccb4f58ad", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 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": "29" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "\uC544\uAC00 SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 8, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js deleted file mode 100644 index d7ae6f22bbd5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c88cafad4fdf81af74bb9cc82d9b2af9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - '3098acee-2dfc-44ec-a068-e397f6d1df7a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json new file mode 100644 index 000000000000..626a41393769 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/recognition/pii?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "296", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000058-0000000000000116-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ed2f28de-651c-4c16-8780-e9a2f2c04944" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: 859-98-0987", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5eb152fe-ed2c-4f97-85d7-d36324e04240", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "Date": "Fri, 18 Feb 2022 18:59:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "o\u0335\u0308\u0307\u0312\u0303\u034B\u0307\u0305\u035B\u030B\u035B\u030E\u0341\u0351\u0304\u0310\u0302\u030E\u031B\u0357\u035D\u0333\u0318\u0318\u0355\u0354\u0355\u0327\u032D\u0327\u031F\u0319\u034E\u0348\u031E\u0322\u0354m\u0335\u035D\u0315\u0304\u030F\u0360\u034C\u0302\u0311\u033D\u034D\u0349\u0317g\u0335\u030B\u0352\u0344\u0360\u0313\u0312\u0308\u030D\u030C\u0343\u0305\u0351\u0312\u0343\u0305\u0305\u0352\u033F\u030F\u0301\u0357\u0300\u0307\u035B\u030F\u0300\u031B\u0344\u0300\u030A\u033E\u0340\u035D\u0314\u0349\u0322\u031E\u0321\u032F\u0320\u0324\u0323\u0355\u0322\u031F\u032B\u032B\u033C\u0330\u0353\u0345\u0321\u0328\u0326\u0321\u0356\u035C\u0327\u0323\u0323\u034E SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 121, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js deleted file mode 100644 index 21dddefc169a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js +++ /dev/null @@ -1,164 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cf05cd6195df256b68dcce03bde8be18"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d', - 'x-envoy-upstream-service-time', - '321', - 'apim-request-id', - 'bf6c79e7-96a5-427b-9393-daa9630007c8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:37Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '98fedacc-18a5-4279-b8e2-9b5ca3218da6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:37Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '53d3488a-8b6d-4846-ac17-964f09a30de0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:39Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:39.4043365Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '80', - 'apim-request-id', - 'dca7acac-2be7-43af-b2f5-013472cb8b19', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:39Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:39.4043365Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '172', - 'apim-request-id', - 'c27eb79d-5e25-4fec-b3a5-ba356fbf1b5d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:43Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:39.4043365Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '91', - 'apim-request-id', - '24d12499-ca83-4d19-b4d0-f51e1949b7b4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:45Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:45.5283314Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:39.4043365Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:45.5672459Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '213', - 'apim-request-id', - 'c8aaeada-f28c-47df-95ce-3e140f995d69', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/8fe67bbb-7a19-4a53-80a6-646444e5b07d') - .query(true) - .reply(200, {"jobId":"8fe67bbb-7a19-4a53-80a6-646444e5b07d","lastUpdateDateTime":"2021-10-23T00:38:45Z","createdDateTime":"2021-10-23T00:38:37Z","expirationDateTime":"2021-10-24T00:38:37Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:45.5283314Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:39.4043365Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:45.5672459Z","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '362', - 'apim-request-id', - '10d6b1e8-b72d-466a-9beb-37319907ceb6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json new file mode 100644 index 000000000000..1bf528642348 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json @@ -0,0 +1,627 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "497", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000137-0000000000000274-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1ccad2d3-c420-42c9-b38e-7970324867c8" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "4e4eb7d3-78e9-4ae2-ad48-fd5f6281f789", + "Date": "Fri, 18 Feb 2022 19:00:38 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2fcec9a-dc33-4326-817f-353032920122", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "335" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2fcec9a-dc33-4326-817f-353032920122?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000138-0000000000000276-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "592a82b5-6255-4f09-b736-aa628000adc5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23e18f8f-2eba-4ad9-b51c-f5f8de8b1dd6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "e2fcec9a-dc33-4326-817f-353032920122", + "lastUpdateDateTime": "2022-02-18T19:00:39Z", + "createdDateTime": "2022-02-18T19:00:38Z", + "expirationDateTime": "2022-02-19T19:00:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2fcec9a-dc33-4326-817f-353032920122?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000139-0000000000000278-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2dc1d9db-2f1f-4910-9fa5-aea1cfb45c45" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1302afa-7ceb-4655-821b-a289fe21b7ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "e2fcec9a-dc33-4326-817f-353032920122", + "lastUpdateDateTime": "2022-02-18T19:00:39Z", + "createdDateTime": "2022-02-18T19:00:38Z", + "expirationDateTime": "2022-02-19T19:00:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2fcec9a-dc33-4326-817f-353032920122?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000140-0000000000000280-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b41ed854-84d0-40f1-9b65-73cd41cee67b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc832e5c-b5b5-446b-8103-f1298a86361b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "jobId": "e2fcec9a-dc33-4326-817f-353032920122", + "lastUpdateDateTime": "2022-02-18T19:00:40Z", + "createdDateTime": "2022-02-18T19:00:38Z", + "expirationDateTime": "2022-02-19T19:00:38Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:40.8846771Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:40.9222756Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2fcec9a-dc33-4326-817f-353032920122?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000141-0000000000000282-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "120bef1f-531b-4fa8-ae48-95c5c80de54f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1e0d12e4-64b1-4e49-aa04-d6df771e071e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "158" + }, + "ResponseBody": { + "jobId": "e2fcec9a-dc33-4326-817f-353032920122", + "lastUpdateDateTime": "2022-02-18T19:00:42Z", + "createdDateTime": "2022-02-18T19:00:38Z", + "expirationDateTime": "2022-02-19T19:00:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:40.8846771Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:40.9222756Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:42.9312364Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e2fcec9a-dc33-4326-817f-353032920122?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000142-0000000000000284-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e4e2aa05-d86a-4b25-9572-04b8e7ec474a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4d5f9a89-0b14-4ab5-a6ee-733cd93d11cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" + }, + "ResponseBody": { + "jobId": "e2fcec9a-dc33-4326-817f-353032920122", + "lastUpdateDateTime": "2022-02-18T19:00:42Z", + "createdDateTime": "2022-02-18T19:00:38Z", + "expirationDateTime": "2022-02-19T19:00:38Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:40.8846771Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:40.9222756Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:42.9312364Z", + "state": "succeeded", + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js deleted file mode 100644 index af2f9aba1044..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js +++ /dev/null @@ -1,24 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "28b46fe46c0398ac35b3cb4483489f27"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Document text is empty."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - '55218120-953c-47cb-be07-7b1b90667293', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:25 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json new file mode 100644 index 000000000000..6e0ef11bf3d7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json @@ -0,0 +1,61 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "186", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000130-0000000000000260-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "569cd58a-2b74-436d-98ac-420a4cefa41b" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "c7fa427f-b099-4bb2-9ca6-ec7519e40226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Document text is empty." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.js deleted file mode 100644 index affe2f7d1c55..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.js +++ /dev/null @@ -1,24 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "24c8a2a5a8e45f8e91b3a40ae590296d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}},{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"InvalidTask in AnalyzeInput","innererror":{"code":"InvalidRequestBodyFormat","message":"Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name"}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - 'f891be93-93ed-472f-a1ae-c3182e5d1c3e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:06:30 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json new file mode 100644 index 000000000000..e98673a43f16 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_duplicate_actions_of_the_same_type_are_disallowed.json @@ -0,0 +1,66 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "268", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000227-0000000000000454-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c720029a-103d-4f87-92e4-44fab26c3105" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "13403ec7-9180-4da9-bb6e-cfef250185ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "InvalidTask in AnalyzeInput", + "innererror": { + "code": "InvalidRequestBodyFormat", + "message": "Duplicate task name for task type PersonallyIdentifiableInformation. Make sure each task under a task type has a unique name" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js deleted file mode 100644 index 40eaaaf77dbd..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js +++ /dev/null @@ -1,224 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "883180c67a3f835391e3ac962c491ec1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57', - 'x-envoy-upstream-service-time', - '383', - 'apim-request-id', - 'ddc2152b-2be7-46a8-869e-32f252c3bbd4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:39:58Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'cb5e6217-83de-41b0-9e64-16d403ff29fd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:39:59Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - 'dae4e63e-d53a-45dd-815e-6336e8d7fc23', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:39:59Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'e9a4ce66-29b3-4cfc-b8ba-6db44a5ec53b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:39:59Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8cf187ac-e760-4d73-b2eb-025d33940d97', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:40:05Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '60', - 'apim-request-id', - '25d21ef4-0a76-4896-a466-aa2d801ca239', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:40:07Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:07.1658891Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:06.2424869Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '137', - 'apim-request-id', - 'e5986f66-7f97-4414-8e36-bf07081fef22', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:40:07Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:07.1658891Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:06.2424869Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '396', - 'apim-request-id', - 'db203dfd-a3f2-40ee-8157-24a54731bcce', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:40:07Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:07.1658891Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:06.2424869Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '192', - 'apim-request-id', - 'aeef32e3-01fe-4166-8105-52116e31e924', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:40:13Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:07.1658891Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:06.2424869Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:13.6093264Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '467', - 'apim-request-id', - '321005c4-c7c2-4b9a-acb0-dd40ddaa7277', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/490b23ff-3c98-4b84-babd-c4e16e57fb57') - .query(true) - .reply(200, {"jobId":"490b23ff-3c98-4b84-babd-c4e16e57fb57","lastUpdateDateTime":"2021-10-23T00:40:13Z","createdDateTime":"2021-10-23T00:39:58Z","expirationDateTime":"2021-10-24T00:39:58Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:07.1658891Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:06.2424869Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:13.6093264Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '245', - 'apim-request-id', - 'af1cb6fb-cdcd-4374-bec6-bfe83726dd2e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:14 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json new file mode 100644 index 000000000000..27c42c1198f3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json @@ -0,0 +1,562 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "510", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000172-0000000000000344-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9bb7d1dc-3e33-4fe4-adc1-0de1e5b8ed10" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b7fc7964-8d37-41c3-8c18-a7ddd5a19d70", + "Date": "Fri, 18 Feb 2022 19:01:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000173-0000000000000346-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bce73224-538a-4db7-8101-42086162e885" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18283456-f66c-41eb-ae04-d4cbfb1acfa3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8", + "lastUpdateDateTime": "2022-02-18T19:01:19Z", + "createdDateTime": "2022-02-18T19:01:19Z", + "expirationDateTime": "2022-02-19T19:01:19Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000174-0000000000000348-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "da438b00-e0ce-4471-a7f6-8f054e3b6304" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94ddc65f-86fa-4697-b529-36f6f96eb78f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8", + "lastUpdateDateTime": "2022-02-18T19:01:19Z", + "createdDateTime": "2022-02-18T19:01:19Z", + "expirationDateTime": "2022-02-19T19:01:19Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000175-0000000000000350-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "41554bd4-3861-4be2-94e7-e6aa474bf821" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78bdac9d-a53f-4eba-98ea-ed103a90b3a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "978" + }, + "ResponseBody": { + "jobId": "5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8", + "lastUpdateDateTime": "2022-02-18T19:01:21Z", + "createdDateTime": "2022-02-18T19:01:19Z", + "expirationDateTime": "2022-02-19T19:01:19Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:21.2176281Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:21.201523Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000176-0000000000000352-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9bf95424-5004-49d0-9f0a-eaad2145ac62" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5bfa69c-fe67-4bb1-bcb7-360a16fc8a9f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" + }, + "ResponseBody": { + "jobId": "5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8", + "lastUpdateDateTime": "2022-02-18T19:01:22Z", + "createdDateTime": "2022-02-18T19:01:19Z", + "expirationDateTime": "2022-02-19T19:01:19Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:22.5431381Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:21.2176281Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:21.201523Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000177-0000000000000354-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "279385fe-a218-4bba-a5a0-8f45b06c05f5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01a75142-a1b6-4b68-ad71-1524bb79b865", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "186" + }, + "ResponseBody": { + "jobId": "5fe3a3f4-71ef-4f35-bd8c-e7740720aaf8", + "lastUpdateDateTime": "2022-02-18T19:01:22Z", + "createdDateTime": "2022-02-18T19:01:19Z", + "expirationDateTime": "2022-02-19T19:01:19Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:22.5431381Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:21.2176281Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant had really good food.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:21.201523Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js deleted file mode 100644 index 9cb6386fa7a8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js +++ /dev/null @@ -1,164 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "586a571f3405fc4a91192c8057f26eba"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"UnicodeCodePoint"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244', - 'x-envoy-upstream-service-time', - '823', - 'apim-request-id', - '5bf306d1-a1a6-489d-9ca1-0c8cdd8a0c56', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:08Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'a56aac5b-f8ad-48db-88f4-c3dc8b464c80', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:08Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8b33ce8f-a7c9-496c-81a5-345118fc6153', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:09Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'c2d49d26-b139-469e-9328-9b36a74b4f11', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:09Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'dd713664-3e9d-4b66-9ceb-263050c835cd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:09Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '40', - 'apim-request-id', - 'ee3b27d3-ddb0-4e0a-aa34-e9e0b8d34f7a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:16Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:41:16.4789392Z","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '57', - 'apim-request-id', - '21257b4e-0054-4ea6-86aa-0b6109f53c81', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/9ebcc56f-6735-4204-897e-e585142d7244') - .query(true) - .reply(200, {"jobId":"9ebcc56f-6735-4204-897e-e585142d7244","lastUpdateDateTime":"2021-10-23T00:41:16Z","createdDateTime":"2021-10-23T00:41:08Z","expirationDateTime":"2021-10-24T00:41:08Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:41:16.4789392Z","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '68', - 'apim-request-id', - '172766e4-f6f9-4c0d-893f-e44f85c54cb0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:17 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json new file mode 100644 index 000000000000..17946fa909de --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json @@ -0,0 +1,370 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "247", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000218-0000000000000436-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f152975f-297a-4f37-93a9-cd0c48020e2a" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: 859-98-0987", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "UnicodeCodePoint" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "297481fa-20ca-4585-833c-fd0ee1248ea0", + "Date": "Fri, 18 Feb 2022 19:02:14 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000219-0000000000000438-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b7f03902-cf1b-432e-8a3f-7df921140c61" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "128d38dc-573b-474b-bb62-5afab4091775", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:15Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000220-0000000000000440-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "920b8e02-0588-4a7b-99ea-4cfb5d980834" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "198f0ed9-49b3-452f-af93-0c3194febc28", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:15Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000221-0000000000000442-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2735d426-2f08-4456-9985-9e8b891032a5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6becd098-013e-4961-b7d4-5fc981f46dae", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:15Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000222-0000000000000444-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "67ed1d71-d6ca-44c6-b3e2-94db06065022" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae045479-c0ad-4fa4-b1a0-f211fab3a7aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:15Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000223-0000000000000446-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1c7f43c5-70e9-41d4-ab32-820a331becfb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7dc0fda3-7645-4c8b-aff5-c6fe4dcd5100", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:15Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000224-0000000000000448-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3d1af604-cf77-4835-97be-d5bd5e1c66ad" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af8173c4-cbf9-4523-ba79-4e8803de6ae7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:22Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:22.7182769Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/18dc5b2a-8117-4a28-b1d0-57644d5ab31b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000225-0000000000000450-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0c549d71-cb4c-400b-9669-ed9090230170" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1de102f1-2edd-4b0a-9597-24f765fee11e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "18dc5b2a-8117-4a28-b1d0-57644d5ab31b", + "lastUpdateDateTime": "2022-02-18T19:02:22Z", + "createdDateTime": "2022-02-18T19:02:15Z", + "expirationDateTime": "2022-02-19T19:02:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:22.7182769Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF SSN: ***********", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 17, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js deleted file mode 100644 index 727e3de9b1fd..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js +++ /dev/null @@ -1,164 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cd38c4c6eb5d8af4f0f3e496da5ffdf1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af', - 'x-envoy-upstream-service-time', - '324', - 'apim-request-id', - '9cbd92a3-d07e-470d-8845-72320e608346', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:26Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '52', - 'apim-request-id', - 'd6bca46f-cef5-410b-9191-d6cef0705ec9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:26Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '541401ab-7d74-413d-b246-ae5e26b77427', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:28Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:28.3059805Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '77', - 'apim-request-id', - '6cff9d5a-4a48-4527-9bd7-cf40e800dfe5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:28Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:28.3059805Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '105', - 'apim-request-id', - '2478cfba-fcc4-4b36-866d-c8b83ceb686d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:28Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:28.3059805Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '57', - 'apim-request-id', - '3ae905a0-79fc-4b41-bb64-5234048a2766', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:34Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:34.1763989Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:28.3059805Z","state":"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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:34.4374647Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '147', - 'apim-request-id', - 'ae5b5e79-41c9-4391-8f6d-012a4a0cd4f3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d8d835d9-adab-4e6c-acb3-240dc1e0e2af') - .query(true) - .reply(200, {"jobId":"d8d835d9-adab-4e6c-acb3-240dc1e0e2af","lastUpdateDateTime":"2021-10-23T00:40:34Z","createdDateTime":"2021-10-23T00:40:26Z","expirationDateTime":"2021-10-24T00:40:26Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:34.1763989Z","state":"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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:28.3059805Z","state":"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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:34.4374647Z","state":"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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '424', - 'apim-request-id', - '4e0304d7-205c-4a5e-8b5b-e26cde15e24b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:34 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json new file mode 100644 index 000000000000..bf5a9ed0fb41 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json @@ -0,0 +1,609 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "436", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000184-0000000000000368-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2a9f798d-d9b1-4f7a-a781-37a92ddf2cc6" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6064b81e-1bd7-4260-a18a-b475c8050dac", + "Date": "Fri, 18 Feb 2022 19:01:31 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000185-0000000000000370-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "366413f3-2221-4f79-89ed-dd4aa4e8ea5c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "affe305f-f780-48d3-992f-38b23b2b71fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:31Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000186-0000000000000372-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "60c0605d-b828-4756-a700-897decdbba92" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3be51cbc-213c-4256-98e6-fddcc392eaf4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:32Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000187-0000000000000374-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ad342999-e5ce-41ec-b5a3-2a105eefcb06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0fa1f633-f4db-4837-a562-4a1708553cdc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:33Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.3401663Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.4111793Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000188-0000000000000376-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b9fb4db9-c4c0-436e-91a0-309ebae0beb7" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b1e3b79-d08c-4171-a476-11c0539f3ac8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:33Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.3401663Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.4111793Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000189-0000000000000378-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "11cc70fc-b2b2-4d2c-bd09-502c7fa35f0e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f89c732-6208-420a-814c-869c968788db", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:33Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.3401663Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.4111793Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000190-0000000000000380-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c854d2e2-ab08-4cf9-b6b9-0cfe38c77acd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a776ca9c-b36f-4870-95d1-81e7f7b9f8ee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:38Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.3401663Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.4111793Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:38.633224Z", + "state": "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/224d500a-d8d4-4123-a029-58376ecdea41?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000191-0000000000000382-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8bbcba74-0928-412e-b7d5-5cae3c62b130" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0040d881-edad-4002-8093-b63a77c82d71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": { + "jobId": "224d500a-d8d4-4123-a029-58376ecdea41", + "lastUpdateDateTime": "2022-02-18T19:01:38Z", + "createdDateTime": "2022-02-18T19:01:31Z", + "expirationDateTime": "2022-02-19T19:01:31Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.3401663Z", + "state": "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:33.4111793Z", + "state": "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:38.633224Z", + "state": "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js deleted file mode 100644 index a711e8d6bfbf..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js +++ /dev/null @@ -1,24 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "fdbacce056d3180da0a43c0748bb1396"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"bad","stringIndexType":"TextElement_v8"}}]}}) - .reply(400, {"error":{"code":"InvalidRequest","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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '15', - 'apim-request-id', - '0e489e20-b3a0-4c7b-814e-f40c21cfa1ca', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:17 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json new file mode 100644 index 000000000000..5f369293e3f8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "190", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000226-0000000000000452-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "33d67cc1-6de0-43c3-acf3-051b33c36d32" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "bad", + "stringIndexType": "TextElement_v8" + } + } + ] + } + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "94967135-60c9-430d-915e-8319c67b1694", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "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 PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js deleted file mode 100644 index 08c9c8b35f31..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js +++ /dev/null @@ -1,5 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d1c43b9d04e7f9e2d9e2bac6086a994c"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js deleted file mode 100644 index dcd0a2afa2b1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js +++ /dev/null @@ -1,104 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "204756a0ef7bb31d61c833d32a9152fa"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"displayName":"testJob","analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f8fc91ac-fdfd-421c-9230-f156728095b7', - 'x-envoy-upstream-service-time', - '202', - 'apim-request-id', - 'f611a9a8-8e7f-44b8-965b-c56a0e7ddabc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8fc91ac-fdfd-421c-9230-f156728095b7') - .query(true) - .reply(200, {"jobId":"f8fc91ac-fdfd-421c-9230-f156728095b7","lastUpdateDateTime":"2021-10-23T00:41:03Z","createdDateTime":"2021-10-23T00:41:03Z","expirationDateTime":"2021-10-24T00:41:03Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - '955056b0-4237-4104-a5bb-eb2a4b4eb18a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8fc91ac-fdfd-421c-9230-f156728095b7') - .query(true) - .reply(200, {"jobId":"f8fc91ac-fdfd-421c-9230-f156728095b7","lastUpdateDateTime":"2021-10-23T00:41:03Z","createdDateTime":"2021-10-23T00:41:03Z","expirationDateTime":"2021-10-24T00:41:03Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '3a342317-4595-49f8-b7d3-db5a63edd1bc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8fc91ac-fdfd-421c-9230-f156728095b7') - .query(true) - .reply(200, {"jobId":"f8fc91ac-fdfd-421c-9230-f156728095b7","lastUpdateDateTime":"2021-10-23T00:41:04Z","createdDateTime":"2021-10-23T00:41:03Z","expirationDateTime":"2021-10-24T00:41:03Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - 'cc0f9fe7-bd41-4865-b0a7-12b33edccc43', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f8fc91ac-fdfd-421c-9230-f156728095b7') - .query(true) - .reply(200, {"jobId":"f8fc91ac-fdfd-421c-9230-f156728095b7","lastUpdateDateTime":"2021-10-23T00:41:06Z","createdDateTime":"2021-10-23T00:41:03Z","expirationDateTime":"2021-10-24T00:41:03Z","status":"succeeded","errors":[],"displayName":"testJob","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:41:06.9084334Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '79', - 'apim-request-id', - '947fd080-0237-4492-a023-4dd45836ebfb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:07 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json new file mode 100644 index 000000000000..3f69457ede79 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json @@ -0,0 +1,241 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "92c9ab63-92c3-4ee1-9013-3b9c52f66781" + }, + "RequestBody": { + "displayName": "testJob", + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "63c9fefa-3cb7-4e8c-9569-7b9cd63c6818", + "Date": "Fri, 18 Feb 2022 19:38:21 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "203" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "aa172766-4a6f-47bf-b15b-17d04bc2dee5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3dd54ae4-5f33-4760-b38e-95fcbf5e8f57", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c", + "lastUpdateDateTime": "2022-02-18T19:38:21Z", + "createdDateTime": "2022-02-18T19:38:21Z", + "expirationDateTime": "2022-02-19T19:38:21Z", + "status": "notStarted", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a9601c17-e684-4358-b20f-fff006a3f839" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "45f3de56-3338-4cd0-96d3-48cc374807d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c", + "lastUpdateDateTime": "2022-02-18T19:38:21Z", + "createdDateTime": "2022-02-18T19:38:21Z", + "expirationDateTime": "2022-02-19T19:38:21Z", + "status": "notStarted", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6a6724f3-ae0c-467f-bcaa-844364e57550" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "51e88f9f-b6aa-49f2-a55f-9c7ee42f385d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c", + "lastUpdateDateTime": "2022-02-18T19:38:22Z", + "createdDateTime": "2022-02-18T19:38:21Z", + "expirationDateTime": "2022-02-19T19:38:21Z", + "status": "running", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6f14927d-cf63-4f4d-a901-4ba5008987a9" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d954b92-50b3-47de-b5e8-888b583864e9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:38:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" + }, + "ResponseBody": { + "jobId": "9a6d42da-a1d5-4b67-8d8c-f5c66aa6534c", + "lastUpdateDateTime": "2022-02-18T19:38:25Z", + "createdDateTime": "2022-02-18T19:38:21Z", + "expirationDateTime": "2022-02-19T19:38:21Z", + "status": "succeeded", + "errors": [], + "displayName": "testJob", + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:38:25.699689Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js deleted file mode 100644 index 428547850597..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js +++ /dev/null @@ -1,224 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a4ffbed8fae59affb4b60746250e226c"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":"w"},{"id":"19","text":":P"},{"id":"1","text":":D"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945', - 'x-envoy-upstream-service-time', - '471', - 'apim-request-id', - '7e777f3d-5860-42b3-aeed-39e35dd31aec', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:04Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '19', - 'apim-request-id', - '81a56159-968d-40ea-b52a-77958d6a32d6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:04Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '6a23a33f-fa4e-4541-a76c-5c476e20716b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:04Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'eca9a16b-b52b-499b-958b-5c8203acff12', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:04Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - 'c5b91c1e-be99-4ed0-9e65-4974c3a3536b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:10Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'da8b6be9-3dc6-49ec-a396-6fd4ab77857e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:12Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:12.2192228Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:11.7387646Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '254', - 'apim-request-id', - '9ec3e9f2-4ab6-44ed-ac08-c6e9a7d33db7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:12Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:12.2192228Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:11.7387646Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '267', - 'apim-request-id', - '5344e7dd-335a-4c54-9fb6-c2743bbbec15', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:12Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:12.2192228Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:11.7387646Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '207', - 'apim-request-id', - '690f0dea-21f4-46a8-9055-acf5827fca41', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:17Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:12.2192228Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:11.7387646Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:17.4425959Z","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '273', - 'apim-request-id', - '9acb9093-3fd5-4205-b1cd-1c66ae8967bd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a22669ca-d529-4dbb-963c-0146b65d9945') - .query(true) - .reply(200, {"jobId":"a22669ca-d529-4dbb-963c-0146b65d9945","lastUpdateDateTime":"2021-10-23T00:39:17Z","createdDateTime":"2021-10-23T00:39:03Z","expirationDateTime":"2021-10-24T00:39:03Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:12.2192228Z","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:11.7387646Z","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:17.4425959Z","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '370', - 'apim-request-id', - 'c065d80e-fca1-49ea-8a31-ce1efeaa505e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:19 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json new file mode 100644 index 000000000000..802b6da76756 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json @@ -0,0 +1,658 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "440", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000150-0000000000000300-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1a7110a2-4221-4bc4-8daf-04b527ad9cba" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "w" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5626ce1c-44c1-4875-ae2b-e135c0a02043", + "Date": "Fri, 18 Feb 2022 19:00:52 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "348" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000151-0000000000000302-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "950fc170-6a63-481f-a039-6bf99af56a90" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b9ba3c8-c7c1-49a6-aa7f-53556b863df0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "735e70b8-2f46-411c-89b4-688cafa425ba", + "lastUpdateDateTime": "2022-02-18T19:00:52Z", + "createdDateTime": "2022-02-18T19:00:52Z", + "expirationDateTime": "2022-02-19T19:00:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000152-0000000000000304-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ca5ec04d-4cd9-4851-9cb1-cf5e02b02383" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fba46cc3-3f92-41ef-8e2b-3939392a15e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "jobId": "735e70b8-2f46-411c-89b4-688cafa425ba", + "lastUpdateDateTime": "2022-02-18T19:00:53Z", + "createdDateTime": "2022-02-18T19:00:52Z", + "expirationDateTime": "2022-02-19T19:00:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000153-0000000000000306-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4220d775-66ea-41f9-96c6-29189c016da2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb03871c-211c-4eb3-97a4-591a2710e3c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "jobId": "735e70b8-2f46-411c-89b4-688cafa425ba", + "lastUpdateDateTime": "2022-02-18T19:00:55Z", + "createdDateTime": "2022-02-18T19:00:52Z", + "expirationDateTime": "2022-02-19T19:00:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.0882017Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000154-0000000000000308-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "07d14759-fbb8-4aa2-810a-87a021fdb625" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2f3f26a-c496-441b-ab2e-e82908d6c09f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "jobId": "735e70b8-2f46-411c-89b4-688cafa425ba", + "lastUpdateDateTime": "2022-02-18T19:00:56Z", + "createdDateTime": "2022-02-18T19:00:52Z", + "expirationDateTime": "2022-02-19T19:00:52Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.0882017Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.9996668Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000155-0000000000000310-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "77d36f65-6570-426e-bb03-51ba6a530c06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ecd6d054-fd3c-46dd-87a2-4aaed21b9b3f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "842" + }, + "ResponseBody": { + "jobId": "735e70b8-2f46-411c-89b4-688cafa425ba", + "lastUpdateDateTime": "2022-02-18T19:00:57Z", + "createdDateTime": "2022-02-18T19:00:52Z", + "expirationDateTime": "2022-02-19T19:00:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.0882017Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.9996668Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:57.3733007Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/735e70b8-2f46-411c-89b4-688cafa425ba?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000156-0000000000000312-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3bed53e6-7c4f-4320-bc2f-c7566c87fb67" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9225135e-62c9-43f8-991e-89ef17d63491", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "254" + }, + "ResponseBody": { + "jobId": "735e70b8-2f46-411c-89b4-688cafa425ba", + "lastUpdateDateTime": "2022-02-18T19:00:57Z", + "createdDateTime": "2022-02-18T19:00:52Z", + "expirationDateTime": "2022-02-19T19:00:52Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.0882017Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:55.9996668Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": ":)", + "id": "56", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":(", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "w", + "id": "22", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":P", + "id": "19", + "entities": [], + "warnings": [] + }, + { + "redactedText": ":D", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:57.3733007Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "56", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "0", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js deleted file mode 100644 index 48f24f5b1ded..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js +++ /dev/null @@ -1,224 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3762baf9b0060053b2d28b16ac486e17"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a', - 'x-envoy-upstream-service-time', - '390', - 'apim-request-id', - '74479ec9-2389-47be-9989-e21c8104de4c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:47Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '2f0255bd-7922-4c05-8ab6-8fac2ba9cdf7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:47Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2cd520b0-0a0d-493d-8878-5dc33d297d85', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:47Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'b97848f5-c60d-4a1b-b4e1-3adfa29a74a2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:50Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '125', - 'apim-request-id', - 'e1bff7d2-72a2-4158-8fb6-b9e705edb2d4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:53Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '90', - 'apim-request-id', - 'bb3bbe19-1e50-432c-b771-737dffc992d3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:55Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:55.76482Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '249', - 'apim-request-id', - '8fbc116d-8d7a-469b-bfc9-840eb773b84a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:55Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:55.76482Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '190', - 'apim-request-id', - 'a9e4c43d-7e05-46f8-80c9-ab9ce3b0341c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:38:55Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:55.76482Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '390', - 'apim-request-id', - '508d2bc2-7c12-49a0-be89-4c798a4fc4f6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:39:02Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:55.76482Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:02.2240583Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '344', - 'apim-request-id', - '5471cf06-162f-4d91-bd16-4fc85c8b1569', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/3044e606-e1bf-4d69-853d-8fb04716070a') - .query(true) - .reply(200, {"jobId":"3044e606-e1bf-4d69-853d-8fb04716070a","lastUpdateDateTime":"2021-10-23T00:39:02Z","createdDateTime":"2021-10-23T00:38:47Z","expirationDateTime":"2021-10-24T00:38:47Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:55.76482Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:50.5611939Z","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:02.2240583Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '272', - 'apim-request-id', - '1dd3ccff-2038-49ec-bb1f-9b0aee9913f3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:02 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json new file mode 100644 index 000000000000..b5cb8adad89c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json @@ -0,0 +1,674 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "447", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000143-0000000000000286-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c43461ad-7685-422f-b6fb-39fae1c89357" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "82a75ab4-8ab6-4d07-b690-13b62dfe3030", + "Date": "Fri, 18 Feb 2022 19:00:43 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "225" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000144-0000000000000288-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1d7536c9-24ab-4c65-8e24-9a83f83e3060" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92c5079f-055f-47d5-826a-4ba5fae8d2e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "fe88074d-ddeb-4405-91a7-f955130e7806", + "lastUpdateDateTime": "2022-02-18T19:00:44Z", + "createdDateTime": "2022-02-18T19:00:44Z", + "expirationDateTime": "2022-02-19T19:00:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000145-0000000000000290-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5374f88a-3cf0-4f71-a894-c72322a7f9d8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "05cf717c-6117-4432-90a6-6b5ece69c412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "fe88074d-ddeb-4405-91a7-f955130e7806", + "lastUpdateDateTime": "2022-02-18T19:00:45Z", + "createdDateTime": "2022-02-18T19:00:44Z", + "expirationDateTime": "2022-02-19T19:00:44Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000146-0000000000000292-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0c12cceb-7513-4d58-91e5-98b6427b8a09" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01232a11-2523-4f47-b746-167bf03b2c5d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "fe88074d-ddeb-4405-91a7-f955130e7806", + "lastUpdateDateTime": "2022-02-18T19:00:45Z", + "createdDateTime": "2022-02-18T19:00:44Z", + "expirationDateTime": "2022-02-19T19:00:44Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000147-0000000000000294-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5d31c835-6243-4839-86c7-25050deefbcb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9642dbd8-fdcb-4c88-98fb-5e8444721d6e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "81" + }, + "ResponseBody": { + "jobId": "fe88074d-ddeb-4405-91a7-f955130e7806", + "lastUpdateDateTime": "2022-02-18T19:00:48Z", + "createdDateTime": "2022-02-18T19:00:44Z", + "expirationDateTime": "2022-02-19T19:00:44Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:48.9841083Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000148-0000000000000296-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "95f3a0d1-7d77-4f4c-aebd-3c1da71e44a3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8e4b9ab6-5f3b-42df-a315-078260947517", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "189" + }, + "ResponseBody": { + "jobId": "fe88074d-ddeb-4405-91a7-f955130e7806", + "lastUpdateDateTime": "2022-02-18T19:00:49Z", + "createdDateTime": "2022-02-18T19:00:44Z", + "expirationDateTime": "2022-02-19T19:00:44Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:49.7946302Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:48.9841083Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:49.2394054Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/fe88074d-ddeb-4405-91a7-f955130e7806?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000149-0000000000000298-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "72bb27cc-b38c-4463-aa07-98db739b506b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4cf15411-9750-4f57-a1f2-23ca24c74d4e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "313" + }, + "ResponseBody": { + "jobId": "fe88074d-ddeb-4405-91a7-f955130e7806", + "lastUpdateDateTime": "2022-02-18T19:00:49Z", + "createdDateTime": "2022-02-18T19:00:44Z", + "expirationDateTime": "2022-02-19T19:00:44Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:49.7946302Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "one", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "two", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 3, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "three", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 5, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "4", + "entities": [ + { + "text": "four", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "text": "five", + "category": "Quantity", + "subcategory": "Number", + "offset": 0, + "length": 4, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:48.9841083Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "one", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "two", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "three", + "id": "3", + "entities": [], + "warnings": [] + }, + { + "redactedText": "four", + "id": "4", + "entities": [], + "warnings": [] + }, + { + "redactedText": "five", + "id": "5", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:49.2394054Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js deleted file mode 100644 index 39983c30f539..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js +++ /dev/null @@ -1,264 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "62c1fe15c62c95311d183654f7e1c9d9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"},{"id":"11","text":"random text","language":"en"},{"id":"12","text":"random text","language":"en"},{"id":"13","text":"random text","language":"en"},{"id":"14","text":"random text","language":"en"},{"id":"15","text":"random text","language":"en"},{"id":"16","text":"random text","language":"en"},{"id":"17","text":"random text","language":"en"},{"id":"18","text":"random text","language":"en"},{"id":"19","text":"random text","language":"en"},{"id":"20","text":"random text","language":"en"},{"id":"21","text":"random text","language":"en"},{"id":"22","text":"random text","language":"en"},{"id":"23","text":"random text","language":"en"},{"id":"24","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2', - 'x-envoy-upstream-service-time', - '1102', - 'apim-request-id', - '23d607c5-9e5c-496b-9cf4-7bddd75c9fc1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:36Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8af555f3-62fe-494f-ac9d-b04adaf6fce0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:37Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '16', - 'apim-request-id', - '4b99b401-a149-4d23-9074-45485fc19ad5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:37Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2a3c757e-7fd0-4d47-b143-7cc8f9e15366', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:37Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'aac99908-76a5-4265-989f-08a98a6d3c17', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:42Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '231', - 'apim-request-id', - '076ce897-1a7d-4efb-a9f0-3dd38d07b5d2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:42Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '292', - 'apim-request-id', - '1b89ebe7-3ea3-490f-8bfc-26c3060c53db', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:42Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '315', - 'apim-request-id', - 'f885c157-1ebb-4586-a14f-f664b70c610e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:48Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '250', - 'apim-request-id', - '4588bd6a-5d97-4058-af1f-d269d3bf5815', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:51Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:51.2380665Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]},{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '553', - 'apim-request-id', - '4b032695-e1f3-4026-a5b0-f64f486ce60b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:51Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:51.2380665Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=10&$top=10&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '353', - 'apim-request-id', - '7e7801fb-f12b-4dc7-b84f-c18b0afb203a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:51Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:51.2380665Z","state":"succeeded","results":{"documents":[{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2?$skip=20&$top=5&showStats=False"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '396', - 'apim-request-id', - '9714799e-8536-4115-87ec-a39ccd881010', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/55af9152-657f-4864-8436-b3ae549c32a2') - .query(true) - .reply(200, {"jobId":"55af9152-657f-4864-8436-b3ae549c32a2","lastUpdateDateTime":"2021-10-23T00:40:51Z","createdDateTime":"2021-10-23T00:40:35Z","expirationDateTime":"2021-10-24T00:40:35Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:42.1263786Z","state":"succeeded","results":{"documents":[{"id":"20","entities":[],"warnings":[]},{"id":"21","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"23","entities":[],"warnings":[]},{"id":"24","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:51.2380665Z","state":"succeeded","results":{"documents":[{"id":"20","keyPhrases":["random text"],"warnings":[]},{"id":"21","keyPhrases":["random text"],"warnings":[]},{"id":"22","keyPhrases":["random text"],"warnings":[]},{"id":"23","keyPhrases":["random text"],"warnings":[]},{"id":"24","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '208', - 'apim-request-id', - '164f197f-6656-4875-bac2-653587fe19ed', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:53 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json new file mode 100644 index 000000000000..77d255afe56e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json @@ -0,0 +1,1833 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "1471", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000192-0000000000000384-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9f958fe5-e9c7-4142-a689-3eda6d27da94" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + }, + { + "id": "11", + "text": "random text", + "language": "en" + }, + { + "id": "12", + "text": "random text", + "language": "en" + }, + { + "id": "13", + "text": "random text", + "language": "en" + }, + { + "id": "14", + "text": "random text", + "language": "en" + }, + { + "id": "15", + "text": "random text", + "language": "en" + }, + { + "id": "16", + "text": "random text", + "language": "en" + }, + { + "id": "17", + "text": "random text", + "language": "en" + }, + { + "id": "18", + "text": "random text", + "language": "en" + }, + { + "id": "19", + "text": "random text", + "language": "en" + }, + { + "id": "20", + "text": "random text", + "language": "en" + }, + { + "id": "21", + "text": "random text", + "language": "en" + }, + { + "id": "22", + "text": "random text", + "language": "en" + }, + { + "id": "23", + "text": "random text", + "language": "en" + }, + { + "id": "24", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3abe1c2e-c04c-4a90-ba59-6e23586b8f3d", + "Date": "Fri, 18 Feb 2022 19:01:41 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "619" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000193-0000000000000386-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f7150ed7-9132-4e45-8651-e0cd30e57402" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4024762c-a136-4b0e-95d9-52bfb6e051d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:42Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000194-0000000000000388-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "de1376ee-b8f5-4f5a-a02c-f3aacbddae82" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc686ac8-4c84-48e2-af7b-0e543e444aab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:42Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000195-0000000000000390-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d5d0cc2f-2aac-43b1-aa9d-d991185b6cf1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "210e085d-7042-4136-ae1e-a667d6073687", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:42Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000196-0000000000000392-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "984d8813-643e-4f67-bebb-9bb35cfbff4d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f7983e7-8c3f-473b-b6f0-87c6085f7c9e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:42Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000197-0000000000000394-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cb75d313-61a5-45ee-a0ab-b2a2277febef" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4478b14-b0ba-4a45-be74-066d8ad52650", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:48Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000198-0000000000000396-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0df60d7a-6a83-4499-9cb9-39a2a7931975" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6c775de2-f296-41a6-9260-12354144468c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:48Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000199-0000000000000398-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "57ecfb58-a9ce-42ff-8065-22c84a6643a2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4064b1b4-8328-4807-bb43-d1fc34fb19c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:52Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000200-0000000000000400-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "10359d07-107e-4729-9e3c-227133819143" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7571f95b-79b4-4896-8015-1da4ef90f4b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "468" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:52Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000201-0000000000000402-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "11e98776-00c9-4bcf-8f1d-429b9b34094a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0b5274f-cf3c-482f-b8f7-f634142e519f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "584" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:56Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000202-0000000000000404-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0177e6cc-60b7-4bfb-87ef-3ef843a83cfd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c887ee78-4bfc-4213-aa42-f9bfdfc2d3ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "305" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:01:59Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000203-0000000000000406-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "05213abd-ccc0-4a41-9896-78cc9b72bae4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "25bc6739-95a1-4670-8447-dff9324d1a05", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "544" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:02:00Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:00.1805547Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + }, + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$top=10\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000204-0000000000000408-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "29e774bc-c414-4e77-b38c-d8e12e63c6f0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96d07aef-994e-4f71-a2ac-6fdfb0c6f435", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "399" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:02:00Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:00.1805547Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "warnings": [] + }, + { + "id": "5", + "entities": [], + "warnings": [] + }, + { + "id": "6", + "entities": [], + "warnings": [] + }, + { + "id": "7", + "entities": [], + "warnings": [] + }, + { + "id": "8", + "entities": [], + "warnings": [] + }, + { + "id": "9", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "4", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "5", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "6", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "7", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "8", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "9", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=10\u0026$top=10\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=10\u0026$top=10\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000205-0000000000000410-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "81c6f2b2-5748-49ac-b9af-1e53bb4f31f3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b5900b1-5ff0-48e1-a4e3-bab221ced41c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "272" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:02:00Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:00.1805547Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "entities": [], + "warnings": [] + }, + { + "id": "11", + "entities": [], + "warnings": [] + }, + { + "id": "12", + "entities": [], + "warnings": [] + }, + { + "id": "13", + "entities": [], + "warnings": [] + }, + { + "id": "14", + "entities": [], + "warnings": [] + }, + { + "id": "15", + "entities": [], + "warnings": [] + }, + { + "id": "16", + "entities": [], + "warnings": [] + }, + { + "id": "17", + "entities": [], + "warnings": [] + }, + { + "id": "18", + "entities": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "10", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "11", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "12", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "13", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "14", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "15", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "16", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "17", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "18", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "19", + "keyPhrases": [ + "random text" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + }, + "@nextLink": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=20\u0026$top=5\u0026showStats=False" + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f84fb601-490c-4ab6-87ce-1ea529cfdc37?$skip=20\u0026$top=5\u0026showStats=False", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000206-0000000000000412-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7ca69d94-d4d2-4803-8a0f-09cd36747bf0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c7239487-8326-4e17-bfda-47a142ae1363", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "jobId": "f84fb601-490c-4ab6-87ce-1ea529cfdc37", + "lastUpdateDateTime": "2022-02-18T19:02:00Z", + "createdDateTime": "2022-02-18T19:01:41Z", + "expirationDateTime": "2022-02-19T19:01:41Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:00.1805547Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "entities": [], + "warnings": [] + }, + { + "id": "21", + "entities": [], + "warnings": [] + }, + { + "id": "22", + "entities": [], + "warnings": [] + }, + { + "id": "23", + "entities": [], + "warnings": [] + }, + { + "id": "24", + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:52.9813737Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "20", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "21", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "22", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "23", + "keyPhrases": [ + "random text" + ], + "warnings": [] + }, + { + "id": "24", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js deleted file mode 100644 index 25ebd023f0ec..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js +++ /dev/null @@ -1,164 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "782a96cbf88cb2448cd7eb594e95d410"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2', - 'x-envoy-upstream-service-time', - '362', - 'apim-request-id', - 'ddce8a2d-31df-4be2-b600-aac443d2f3b2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:40:54Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '15dd2452-4b85-4f95-b5be-84de0ed11aed', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:40:54Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '126', - 'apim-request-id', - '00fd09e3-4abf-4972-902e-49bbdd69490c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:40:55Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'a5fb01eb-7123-4667-8d19-9f9726542f93', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:56 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:40:55Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'da4e3eb4-2bbd-4e3f-ae62-489859024923', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:58 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:40:55Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '9ae72e9f-caa8-456e-9924-a0a3c4e2d40b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:41:02Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:41:02.0526629Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '69', - 'apim-request-id', - 'c5116e72-9ea5-41ae-ae6f-f4bd0093a730', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/315806d9-6def-4e2b-ae44-719c9c7207f2') - .query(true) - .reply(200, {"jobId":"315806d9-6def-4e2b-ae44-719c9c7207f2","lastUpdateDateTime":"2021-10-23T00:41:02Z","createdDateTime":"2021-10-23T00:40:54Z","expirationDateTime":"2021-10-24T00:40:54Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:41:02.0526629Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '83', - 'apim-request-id', - 'e7cabfd9-d95d-4037-a1a5-542b3ade1319', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:03 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json new file mode 100644 index 000000000000..8cb32282e7df --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json @@ -0,0 +1,309 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "286", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000207-0000000000000414-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5d55c3c8-1af9-4bd4-ba71-7c13c6fb3942" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "99a6f784-5ffa-4798-be32-ecb27d85059c", + "Date": "Fri, 18 Feb 2022 19:02:04 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ad6594a3-c9f3-48ad-8daf-0b65cd10860f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ad6594a3-c9f3-48ad-8daf-0b65cd10860f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000208-0000000000000416-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7ce615bc-d982-4c63-9dbf-8d13f5abc76b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "955e4643-6464-476f-b542-71c39daabb85", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "ad6594a3-c9f3-48ad-8daf-0b65cd10860f", + "lastUpdateDateTime": "2022-02-18T19:02:04Z", + "createdDateTime": "2022-02-18T19:02:04Z", + "expirationDateTime": "2022-02-19T19:02:04Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ad6594a3-c9f3-48ad-8daf-0b65cd10860f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000209-0000000000000418-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4e88026a-8e20-46dc-9b6e-f75bcbb0096d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b632c8c6-af2c-401a-92e2-2b10705e175f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "ad6594a3-c9f3-48ad-8daf-0b65cd10860f", + "lastUpdateDateTime": "2022-02-18T19:02:05Z", + "createdDateTime": "2022-02-18T19:02:04Z", + "expirationDateTime": "2022-02-19T19:02:04Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ad6594a3-c9f3-48ad-8daf-0b65cd10860f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000210-0000000000000420-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e5f9f397-9f71-489e-933f-ea941d44f054" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df302711-6ce5-40de-9ac4-5ba3e1e3f9ee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" + }, + "ResponseBody": { + "jobId": "ad6594a3-c9f3-48ad-8daf-0b65cd10860f", + "lastUpdateDateTime": "2022-02-18T19:02:05Z", + "createdDateTime": "2022-02-18T19:02:04Z", + "expirationDateTime": "2022-02-19T19:02:04Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ad6594a3-c9f3-48ad-8daf-0b65cd10860f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000211-0000000000000422-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c23045bc-fd9b-4df2-a4df-e8111a777993" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1a2ba40e-ad6c-40cf-933c-e758153fd2ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "187" + }, + "ResponseBody": { + "jobId": "ad6594a3-c9f3-48ad-8daf-0b65cd10860f", + "lastUpdateDateTime": "2022-02-18T19:02:07Z", + "createdDateTime": "2022-02-18T19:02:04Z", + "expirationDateTime": "2022-02-19T19:02:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:07.7633882Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ad6594a3-c9f3-48ad-8daf-0b65cd10860f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000212-0000000000000424-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5e3a23d1-42b9-4b0f-a74a-fe75e6f625f4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "37de8323-57cb-47dd-b2e9-47c95d3d83fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "jobId": "ad6594a3-c9f3-48ad-8daf-0b65cd10860f", + "lastUpdateDateTime": "2022-02-18T19:02:07Z", + "createdDateTime": "2022-02-18T19:02:04Z", + "expirationDateTime": "2022-02-19T19:02:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:07.7633882Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.js deleted file mode 100644 index c320053e1619..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.js +++ /dev/null @@ -1,104 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e625fabec349c46bd68f70745afca86b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","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.","language":"en"}]},"tasks":{"customMultiClassificationTasks":[{"parameters":{"project-name":"project_name","deployment-name":"deployment_name"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d2b3ff34-6d74-441e-8e1e-c9c295e388aa', - 'x-envoy-upstream-service-time', - '420', - 'apim-request-id', - '4f84b569-7f07-4085-ba6c-8082fb7822fa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d2b3ff34-6d74-441e-8e1e-c9c295e388aa') - .query(true) - .reply(200, {"jobId":"d2b3ff34-6d74-441e-8e1e-c9c295e388aa","lastUpdateDateTime":"2021-10-23T00:36:50Z","createdDateTime":"2021-10-23T00:36:50Z","expirationDateTime":"2021-10-24T00:36:50Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '00db0829-22b5-46f3-8616-f7c29960fd72', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d2b3ff34-6d74-441e-8e1e-c9c295e388aa') - .query(true) - .reply(200, {"jobId":"d2b3ff34-6d74-441e-8e1e-c9c295e388aa","lastUpdateDateTime":"2021-10-23T00:36:50Z","createdDateTime":"2021-10-23T00:36:50Z","expirationDateTime":"2021-10-24T00:36:50Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '4539cc13-bb67-4319-a08a-126cc7d1283c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d2b3ff34-6d74-441e-8e1e-c9c295e388aa') - .query(true) - .reply(200, {"jobId":"d2b3ff34-6d74-441e-8e1e-c9c295e388aa","lastUpdateDateTime":"2021-10-23T00:36:51Z","createdDateTime":"2021-10-23T00:36:50Z","expirationDateTime":"2021-10-24T00:36:50Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customMultiClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:36:51.4254923Z","state":"succeeded","results":{"documents":[{"id":"1","classifications":[],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '168', - 'apim-request-id', - '7425470d-4764-4782-be72-9decb418d7ef', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d2b3ff34-6d74-441e-8e1e-c9c295e388aa') - .query(true) - .reply(200, {"jobId":"d2b3ff34-6d74-441e-8e1e-c9c295e388aa","lastUpdateDateTime":"2021-10-23T00:36:51Z","createdDateTime":"2021-10-23T00:36:50Z","expirationDateTime":"2021-10-24T00:36:50Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customMultiClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:36:51.4254923Z","state":"succeeded","results":{"documents":[{"id":"1","classifications":[],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '89', - 'apim-request-id', - '428d31e8-f59e-4410-aa38-55cab6ff0068', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:52 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json new file mode 100644 index 000000000000..26597d77749d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_multiple_category_classification_action.json @@ -0,0 +1,235 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "484", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fc25ff77-a79b-4143-9660-dcdb0e76555d" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customMultiClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1d8151bd-6dcf-4da1-829a-bd98ec2c1152", + "Date": "Fri, 18 Feb 2022 19:31:20 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0acf282c-b7a9-43fb-a883-f368f8abfc3c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f927f5dc-644a-4c01-8034-8fe8e6a0242e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0", + "lastUpdateDateTime": "2022-02-18T19:31:21Z", + "createdDateTime": "2022-02-18T19:31:21Z", + "expirationDateTime": "2022-02-19T19:31:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "efccb846-790f-4f48-84ca-1168d5912214" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d85aa919-80b9-49d2-a74f-b9c0550f010f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0", + "lastUpdateDateTime": "2022-02-18T19:31:21Z", + "createdDateTime": "2022-02-18T19:31:21Z", + "expirationDateTime": "2022-02-19T19:31:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bdf94c13-c937-4bc0-a69f-de4e4f161f34" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64164e66-980e-4122-836d-517294d86fd2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0", + "lastUpdateDateTime": "2022-02-18T19:31:23Z", + "createdDateTime": "2022-02-18T19:31:21Z", + "expirationDateTime": "2022-02-19T19:31:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:23.160365Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5e94c676-931d-4e0f-a3b6-a0a01db85960" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41ba753d-a39c-44e4-8950-f8a3a67ff65b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "7fb27d09-b7fd-47b6-9c8f-0b2cb26b26d0", + "lastUpdateDateTime": "2022-02-18T19:31:23Z", + "createdDateTime": "2022-02-18T19:31:21Z", + "expirationDateTime": "2022-02-19T19:31:21Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customMultiClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:23.160365Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classifications": [], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.js deleted file mode 100644 index d008172c52b7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.js +++ /dev/null @@ -1,104 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "20e51d103d3129d724daa3fee868df01"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","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.","language":"en"}]},"tasks":{"customSingleClassificationTasks":[{"parameters":{"project-name":"project_name","deployment-name":"deployment_name"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/5a8ee9a0-4896-43a8-996a-afba5f73f440', - 'x-envoy-upstream-service-time', - '547', - 'apim-request-id', - 'eca94f99-a546-4614-9bb4-fe13b960f76a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/5a8ee9a0-4896-43a8-996a-afba5f73f440') - .query(true) - .reply(200, {"jobId":"5a8ee9a0-4896-43a8-996a-afba5f73f440","lastUpdateDateTime":"2021-10-23T00:36:47Z","createdDateTime":"2021-10-23T00:36:47Z","expirationDateTime":"2021-10-24T00:36:47Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '6cb72423-02eb-4635-8e56-44595428a4ab', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/5a8ee9a0-4896-43a8-996a-afba5f73f440') - .query(true) - .reply(200, {"jobId":"5a8ee9a0-4896-43a8-996a-afba5f73f440","lastUpdateDateTime":"2021-10-23T00:36:47Z","createdDateTime":"2021-10-23T00:36:47Z","expirationDateTime":"2021-10-24T00:36:47Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '19', - 'apim-request-id', - '8072d42e-14cc-407a-9854-261c9c881525', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/5a8ee9a0-4896-43a8-996a-afba5f73f440') - .query(true) - .reply(200, {"jobId":"5a8ee9a0-4896-43a8-996a-afba5f73f440","lastUpdateDateTime":"2021-10-23T00:36:48Z","createdDateTime":"2021-10-23T00:36:47Z","expirationDateTime":"2021-10-24T00:36:47Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customSingleClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:36:48.8121263Z","state":"succeeded","results":{"documents":[{"id":"1","classification":{"category":"RateBook","confidenceScore":0.76},"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '72', - 'apim-request-id', - '6b2983c0-92a2-41a8-b3fe-653a72b5af1c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/5a8ee9a0-4896-43a8-996a-afba5f73f440') - .query(true) - .reply(200, {"jobId":"5a8ee9a0-4896-43a8-996a-afba5f73f440","lastUpdateDateTime":"2021-10-23T00:36:48Z","createdDateTime":"2021-10-23T00:36:47Z","expirationDateTime":"2021-10-24T00:36:47Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customSingleClassificationTasks":[{"lastUpdateDateTime":"2021-10-23T00:36:48.8121263Z","state":"succeeded","results":{"documents":[{"id":"1","classification":{"category":"RateBook","confidenceScore":0.76},"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '56', - 'apim-request-id', - '3087ae25-6909-4f59-801c-458d387e6adf', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json new file mode 100644 index 000000000000..3170fd5973e4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_document_single_category_classification_action.json @@ -0,0 +1,241 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "485", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8b505111-480e-4041-9641-39c3c9e7efbc" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customSingleClassificationTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5b3b52ca-b198-4d00-b9fa-de08894a6f9a", + "Date": "Fri, 18 Feb 2022 19:31:17 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c530336b-96d0-464d-baca-5f30e0bb7f56", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "244" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c530336b-96d0-464d-baca-5f30e0bb7f56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a5ec80b3-e45e-4e92-b3ef-9fe70d4b1346" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d1869b24-174d-4858-85d8-60529aebca2b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "c530336b-96d0-464d-baca-5f30e0bb7f56", + "lastUpdateDateTime": "2022-02-18T19:31:18Z", + "createdDateTime": "2022-02-18T19:31:18Z", + "expirationDateTime": "2022-02-19T19:31:18Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c530336b-96d0-464d-baca-5f30e0bb7f56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ac2128cb-0992-4865-84bd-a7081e6a30ab" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9a3a6a20-6541-4675-b441-2959670895a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "c530336b-96d0-464d-baca-5f30e0bb7f56", + "lastUpdateDateTime": "2022-02-18T19:31:18Z", + "createdDateTime": "2022-02-18T19:31:18Z", + "expirationDateTime": "2022-02-19T19:31:18Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c530336b-96d0-464d-baca-5f30e0bb7f56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a5b22303-4913-4f70-98c3-59117480733f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "20a05473-cf34-4e42-b370-6999f74ee4f7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" + }, + "ResponseBody": { + "jobId": "c530336b-96d0-464d-baca-5f30e0bb7f56", + "lastUpdateDateTime": "2022-02-18T19:31:19Z", + "createdDateTime": "2022-02-18T19:31:18Z", + "expirationDateTime": "2022-02-19T19:31:18Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:19.6893889Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c530336b-96d0-464d-baca-5f30e0bb7f56?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8f9cb691-2079-4fba-ace2-3ed20cce9e88" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d5be93fd-729b-4476-9318-ebda2f67cb41", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "jobId": "c530336b-96d0-464d-baca-5f30e0bb7f56", + "lastUpdateDateTime": "2022-02-18T19:31:19Z", + "createdDateTime": "2022-02-18T19:31:18Z", + "expirationDateTime": "2022-02-19T19:31:18Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customSingleClassificationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:19.6893889Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "classification": { + "category": "RateBook", + "confidenceScore": 0.76 + }, + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.js deleted file mode 100644 index df5f9f221040..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.js +++ /dev/null @@ -1,104 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7912107dd789728b7425c517733f2253"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","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.","language":"en"}]},"tasks":{"customEntityRecognitionTasks":[{"parameters":{"project-name":"project_name","deployment-name":"deployment_name","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/ca3959d5-6d61-49aa-b53c-cd3ec8b89da7', - 'x-envoy-upstream-service-time', - '506', - 'apim-request-id', - 'd13a3e6a-32e0-4d47-9199-83217c73fd07', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/ca3959d5-6d61-49aa-b53c-cd3ec8b89da7') - .query(true) - .reply(200, {"jobId":"ca3959d5-6d61-49aa-b53c-cd3ec8b89da7","lastUpdateDateTime":"2021-10-23T00:36:44Z","createdDateTime":"2021-10-23T00:36:44Z","expirationDateTime":"2021-10-24T00:36:44Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - '96daf8d7-5702-486d-a80d-25b69450e288', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/ca3959d5-6d61-49aa-b53c-cd3ec8b89da7') - .query(true) - .reply(200, {"jobId":"ca3959d5-6d61-49aa-b53c-cd3ec8b89da7","lastUpdateDateTime":"2021-10-23T00:36:44Z","createdDateTime":"2021-10-23T00:36:44Z","expirationDateTime":"2021-10-24T00:36:44Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '18', - 'apim-request-id', - 'a62802c6-bbda-4be2-84b3-d6e27a79bcd4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/ca3959d5-6d61-49aa-b53c-cd3ec8b89da7') - .query(true) - .reply(200, {"jobId":"ca3959d5-6d61-49aa-b53c-cd3ec8b89da7","lastUpdateDateTime":"2021-10-23T00:36:45Z","createdDateTime":"2021-10-23T00:36:44Z","expirationDateTime":"2021-10-24T00:36:44Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customEntityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:36:45.9554221Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"98-0987","category":"timeRange","offset":4,"length":7,"confidenceScore":0.55},{"text":"$100","category":"timeRange","offset":27,"length":4,"confidenceScore":0.15},{"text":"John owes","category":"artist","offset":12,"length":9,"confidenceScore":0.18},{"text":"Mike","category":"artist","offset":22,"length":4,"confidenceScore":0.35}],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '247', - 'apim-request-id', - '2a02b948-2c8b-49cc-9433-b1057b80ae8d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/ca3959d5-6d61-49aa-b53c-cd3ec8b89da7') - .query(true) - .reply(200, {"jobId":"ca3959d5-6d61-49aa-b53c-cd3ec8b89da7","lastUpdateDateTime":"2021-10-23T00:36:45Z","createdDateTime":"2021-10-23T00:36:44Z","expirationDateTime":"2021-10-24T00:36:44Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"customEntityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:36:45.9554221Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"98-0987","category":"timeRange","offset":4,"length":7,"confidenceScore":0.55},{"text":"$100","category":"timeRange","offset":27,"length":4,"confidenceScore":0.15},{"text":"John owes","category":"artist","offset":12,"length":9,"confidenceScore":0.18},{"text":"Mike","category":"artist","offset":22,"length":4,"confidenceScore":0.35}],"warnings":[]}],"errors":[],"projectName":"project_name","deploymentName":"deployment_name"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '107', - 'apim-request-id', - '1ead05f6-be9f-46ae-9a0f-082cd5684d6d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json new file mode 100644 index 000000000000..7c93370fb2b8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_custom_entity_recognition_action.json @@ -0,0 +1,462 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "516", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7e423efe-278b-4bf7-bb2b-7fe3fceb3509" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "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.", + "language": "en" + } + ] + }, + "tasks": { + "customEntityRecognitionTasks": [ + { + "parameters": { + "project-name": "sanitized", + "deployment-name": "sanitized", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "fe9298ee-7eab-4848-ae80-712980260489", + "Date": "Fri, 18 Feb 2022 19:31:14 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/70ed07f4-3e9f-487a-b17f-501590daee9e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "419" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/70ed07f4-3e9f-487a-b17f-501590daee9e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e9afb4b5-f296-4d15-a5b4-cf2f83e757d3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3d310d2-d57c-4ecb-939a-abecb294245a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70ed07f4-3e9f-487a-b17f-501590daee9e", + "lastUpdateDateTime": "2022-02-18T19:31:15Z", + "createdDateTime": "2022-02-18T19:31:15Z", + "expirationDateTime": "2022-02-19T19:31:15Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/70ed07f4-3e9f-487a-b17f-501590daee9e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a3771400-bce6-4967-899e-372814bd20b1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "07c64ae3-8b0e-4016-95d5-148d8a2520a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "70ed07f4-3e9f-487a-b17f-501590daee9e", + "lastUpdateDateTime": "2022-02-18T19:31:15Z", + "createdDateTime": "2022-02-18T19:31:15Z", + "expirationDateTime": "2022-02-19T19:31:15Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/70ed07f4-3e9f-487a-b17f-501590daee9e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "61d8f1b9-b05f-4eaf-bb7f-9973a03740b2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1f4f77cb-4747-4bcf-aa34-b8bbbe6dd248", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "70ed07f4-3e9f-487a-b17f-501590daee9e", + "lastUpdateDateTime": "2022-02-18T19:31:16Z", + "createdDateTime": "2022-02-18T19:31:15Z", + "expirationDateTime": "2022-02-19T19:31:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:16.2607063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/70ed07f4-3e9f-487a-b17f-501590daee9e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "052eed48-6917-4fc8-b791-0c9cf04ecbd5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac0e7621-7ef3-4d4f-ba0e-a18d622b71d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:31:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "jobId": "70ed07f4-3e9f-487a-b17f-501590daee9e", + "lastUpdateDateTime": "2022-02-18T19:31:16Z", + "createdDateTime": "2022-02-18T19:31:15Z", + "expirationDateTime": "2022-02-19T19:31:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "customEntityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:31:16.2607063Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Government", + "category": "restaurant_name", + "offset": 23, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "Office", + "category": "restaurant_name", + "offset": 49, + "length": 6, + "confidenceScore": 0.11 + }, + { + "text": "GAO", + "category": "restaurant_name", + "offset": 57, + "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", + "offset": 77, + "length": 8, + "confidenceScore": 0.03 + }, + { + "text": "oil", + "category": "restaurant_type", + "offset": 98, + "length": 3, + "confidenceScore": 0.03 + }, + { + "text": "gas", + "category": "restaurant_type", + "offset": 114, + "length": 3, + "confidenceScore": 0.09 + }, + { + "text": "and", + "category": "served_dish", + "offset": 102, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "development", + "category": "object_type", + "offset": 118, + "length": 11, + "confidenceScore": 0.06 + }, + { + "text": "federal", + "category": "state", + "offset": 133, + "length": 7, + "confidenceScore": 0.07 + }, + { + "text": "protection", + "category": "state", + "offset": 267, + "length": 10, + "confidenceScore": 0.05 + }, + { + "text": "lands", + "category": "poi", + "offset": 141, + "length": 5, + "confidenceScore": 0.04 + }, + { + "text": "BLM", + "category": "poi", + "offset": 202, + "length": 3, + "confidenceScore": 0.07 + }, + { + "text": "the", + "category": "timeRange", + "offset": 152, + "length": 3, + "confidenceScore": 0.24 + }, + { + "text": "past six years", + "category": "timeRange", + "offset": 156, + "length": 14, + "confidenceScore": 0.54 + } + ], + "warnings": [] + } + ], + "errors": [], + "projectName": "sanitized", + "deploymentName": "sanitized" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js deleted file mode 100644 index 1da4d00f192b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js +++ /dev/null @@ -1,224 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "08a944137d225f375d8a40947850adab"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"Microsoft moved its headquarters to Bellevue, Washington in January 1979.","language":"en"},{"id":"1","text":"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.","language":"en"}]},"tasks":{"entityLinkingTasks":[{"parameters":{"stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0', - 'x-envoy-upstream-service-time', - '203', - 'apim-request-id', - '8f41a99a-38fe-4b2a-9cfb-202f37d7cdad', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '6a5ed8e2-a6ac-498a-a724-857922a597dd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'cec21bc4-2e3a-4ac4-a9f2-d7edb16bde7d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:33 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '41810818-e9b2-42c6-9203-5f22dfcfaf1b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'b8def483-851f-4b43-90fe-68baf8676023', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '6e913442-aa99-4e14-8b83-c0b3bb87d71c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '92', - 'apim-request-id', - '407b0f76-e2f1-4939-8553-043d76cbaf4e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'df0e2cfa-5562-42eb-b4e1-942037f164c5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:33Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '8ab900a6-cdce-4644-91bc-2158ba2e20cc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:47Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:47.6136006Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0","name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"bingId":"19fb6fb4-3c50-f314-30e4-7b5470e08274","name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"56ff0719-4791-406b-99de-0e99c3e8cefc","name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"bingId":"cf5db860-9fd2-390d-0b6d-5ba856efed49","name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"},{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"e23e51ed-d16f-4800-9a31-ed056168b9a2","name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '280', - 'apim-request-id', - 'd52e484d-8b7f-417b-a404-9264e01bc819', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/f418c181-9639-4d99-90fc-60ccdc2f81b0') - .query(true) - .reply(200, {"jobId":"f418c181-9639-4d99-90fc-60ccdc2f81b0","lastUpdateDateTime":"2021-10-23T00:37:47Z","createdDateTime":"2021-10-23T00:37:33Z","expirationDateTime":"2021-10-24T00:37:33Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:47.6136006Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0","name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"bingId":"19fb6fb4-3c50-f314-30e4-7b5470e08274","name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"bingId":"56ff0719-4791-406b-99de-0e99c3e8cefc","name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"bingId":"cf5db860-9fd2-390d-0b6d-5ba856efed49","name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"},{"bingId":"a093e9b9-90f5-a3d5-c4b8-5855e1b01f85","name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"bingId":"e23e51ed-d16f-4800-9a31-ed056168b9a2","name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '75', - 'apim-request-id', - '04a12b9a-07d5-4dee-98bf-1b0de726e6b2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json new file mode 100644 index 000000000000..1883613ac6ad --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json @@ -0,0 +1,518 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "346", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000106-0000000000000212-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a60154af-ed4f-4799-8820-efb112d6e69f" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Microsoft moved its headquarters to Bellevue, Washington in January 1979.", + "language": "en" + }, + { + "id": "1", + "text": "Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.", + "language": "en" + } + ] + }, + "tasks": { + "entityLinkingTasks": [ + { + "parameters": { + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3564dbcd-964b-482f-ad34-1e9dc86a7a4a", + "Date": "Fri, 18 Feb 2022 19:00:09 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1895c38c-3b66-4281-b967-e2789d01711d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "221" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1895c38c-3b66-4281-b967-e2789d01711d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000107-0000000000000214-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e22bc344-9ace-4349-b062-b83538e3bb62" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8cb06ef9-a4f0-449d-ab24-af999c92dee3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "1895c38c-3b66-4281-b967-e2789d01711d", + "lastUpdateDateTime": "2022-02-18T19:00:10Z", + "createdDateTime": "2022-02-18T19:00:09Z", + "expirationDateTime": "2022-02-19T19:00:09Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1895c38c-3b66-4281-b967-e2789d01711d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000108-0000000000000216-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dd587c77-c159-4962-a0b6-ac948d869ee2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2ed218b-0034-4e98-a5e6-1a09a39fef2b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "18" + }, + "ResponseBody": { + "jobId": "1895c38c-3b66-4281-b967-e2789d01711d", + "lastUpdateDateTime": "2022-02-18T19:00:10Z", + "createdDateTime": "2022-02-18T19:00:09Z", + "expirationDateTime": "2022-02-19T19:00:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1895c38c-3b66-4281-b967-e2789d01711d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000109-0000000000000218-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6ccdd26a-9b67-4be9-a669-75affa5fdd1d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b1dfebe6-1aed-47d1-b7d5-502e59cb573b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "1895c38c-3b66-4281-b967-e2789d01711d", + "lastUpdateDateTime": "2022-02-18T19:00:10Z", + "createdDateTime": "2022-02-18T19:00:09Z", + "expirationDateTime": "2022-02-19T19:00:09Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1895c38c-3b66-4281-b967-e2789d01711d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000110-0000000000000220-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2ff4d438-0878-4bba-ad31-d527a3bf80df" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "085c3878-ecb1-47fe-8ea0-989f2d25b5ad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "1895c38c-3b66-4281-b967-e2789d01711d", + "lastUpdateDateTime": "2022-02-18T19:00:13Z", + "createdDateTime": "2022-02-18T19:00:09Z", + "expirationDateTime": "2022-02-19T19:00:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:13.0237135Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1895c38c-3b66-4281-b967-e2789d01711d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000111-0000000000000222-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f9dd9be7-fa2e-4e53-b85b-3da9b9e62936" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32578f64-4577-483d-90bc-99b9da050081", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "jobId": "1895c38c-3b66-4281-b967-e2789d01711d", + "lastUpdateDateTime": "2022-02-18T19:00:13Z", + "createdDateTime": "2022-02-18T19:00:09Z", + "expirationDateTime": "2022-02-19T19:00:09Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityLinkingTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:13.0237135Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.39 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "a2e3a3eb-b83e-42f0-bf19-95b4c4c9d3c0", + "name": "Bellevue, Washington", + "matches": [ + { + "text": "Bellevue, Washington", + "offset": 36, + "length": 20, + "confidenceScore": 0.87 + } + ], + "language": "en", + "id": "Bellevue, Washington", + "url": "https://en.wikipedia.org/wiki/Bellevue,_Washington", + "dataSource": "Wikipedia" + }, + { + "bingId": "19fb6fb4-3c50-f314-30e4-7b5470e08274", + "name": "Briann January", + "matches": [ + { + "text": "January", + "offset": 60, + "length": 7, + "confidenceScore": 0.14 + } + ], + "language": "en", + "id": "Briann January", + "url": "https://en.wikipedia.org/wiki/Briann_January", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "bingId": "56ff0719-4791-406b-99de-0e99c3e8cefc", + "name": "Steve Ballmer", + "matches": [ + { + "text": "Steve Ballmer", + "offset": 0, + "length": 13, + "confidenceScore": 0.92 + } + ], + "language": "en", + "id": "Steve Ballmer", + "url": "https://en.wikipedia.org/wiki/Steve_Ballmer", + "dataSource": "Wikipedia" + }, + { + "bingId": "cf5db860-9fd2-390d-0b6d-5ba856efed49", + "name": "Chief executive officer", + "matches": [ + { + "text": "CEO", + "offset": 30, + "length": 3, + "confidenceScore": 0.25 + } + ], + "language": "en", + "id": "Chief executive officer", + "url": "https://en.wikipedia.org/wiki/Chief_executive_officer", + "dataSource": "Wikipedia" + }, + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 37, + "length": 9, + "confidenceScore": 0.36 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, + { + "bingId": "e23e51ed-d16f-4800-9a31-ed056168b9a2", + "name": "Satya Nadella", + "matches": [ + { + "text": "Satya Nadella", + "offset": 68, + "length": 13, + "confidenceScore": 0.9 + } + ], + "language": "en", + "id": "Satya Nadella", + "url": "https://en.wikipedia.org/wiki/Satya_Nadella", + "dataSource": "Wikipedia" + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js deleted file mode 100644 index 5a147f88c953..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js +++ /dev/null @@ -1,104 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1d7e68c14bcd1159d86b5328ac426b14"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.","language":"es"},{"id":"3","text":"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.","language":"de"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a382ba48-5438-4031-8ef1-d30d446a9582', - 'x-envoy-upstream-service-time', - '177', - 'apim-request-id', - 'a731d62a-ad57-4f08-9b22-eed741742bd3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a382ba48-5438-4031-8ef1-d30d446a9582') - .query(true) - .reply(200, {"jobId":"a382ba48-5438-4031-8ef1-d30d446a9582","lastUpdateDateTime":"2021-10-23T00:37:30Z","createdDateTime":"2021-10-23T00:37:30Z","expirationDateTime":"2021-10-24T00:37:30Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '46', - 'apim-request-id', - '4b9f5638-08f9-4305-9822-33db7c8704b4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a382ba48-5438-4031-8ef1-d30d446a9582') - .query(true) - .reply(200, {"jobId":"a382ba48-5438-4031-8ef1-d30d446a9582","lastUpdateDateTime":"2021-10-23T00:37:30Z","createdDateTime":"2021-10-23T00:37:30Z","expirationDateTime":"2021-10-24T00:37:30Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '60db66e8-ca43-412b-a6b6-8ec289d047fc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a382ba48-5438-4031-8ef1-d30d446a9582') - .query(true) - .reply(200, {"jobId":"a382ba48-5438-4031-8ef1-d30d446a9582","lastUpdateDateTime":"2021-10-23T00:37:32Z","createdDateTime":"2021-10-23T00:37:30Z","expirationDateTime":"2021-10-24T00:37:30Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:32.1951318Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '100', - 'apim-request-id', - '426787e0-549d-4ab5-af34-86e287b9f861', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a382ba48-5438-4031-8ef1-d30d446a9582') - .query(true) - .reply(200, {"jobId":"a382ba48-5438-4031-8ef1-d30d446a9582","lastUpdateDateTime":"2021-10-23T00:37:32Z","createdDateTime":"2021-10-23T00:37:30Z","expirationDateTime":"2021-10-24T00:37:30Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:32.1951318Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '546', - 'apim-request-id', - '5ed39cac-67b7-4ed6-bf5e-c39e4c480576', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:33 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json new file mode 100644 index 000000000000..1fad1f3fe2cd --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json @@ -0,0 +1,486 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "471", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000100-0000000000000200-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7e84f5bb-b358-4c4a-b2a9-0bc3c4d86e7d" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.", + "language": "es" + }, + { + "id": "3", + "text": "Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegr\u00FCndet.", + "language": "de" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "41110fdc-07ce-4dd7-ac80-2d09abc57b91", + "Date": "Fri, 18 Feb 2022 19:00:04 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/026f72ad-e4bd-4802-8591-4505b27fb77b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "186" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/026f72ad-e4bd-4802-8591-4505b27fb77b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000101-0000000000000202-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "647ca47f-edde-4586-a2df-3e0e578b2ead" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "50fa6e19-645f-458c-ad8f-2ea636f7ccdb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "026f72ad-e4bd-4802-8591-4505b27fb77b", + "lastUpdateDateTime": "2022-02-18T19:00:04Z", + "createdDateTime": "2022-02-18T19:00:04Z", + "expirationDateTime": "2022-02-19T19:00:04Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/026f72ad-e4bd-4802-8591-4505b27fb77b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000102-0000000000000204-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bb6182f4-0de1-4d4e-845e-eabf09cd1871" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1531b5a8-63c0-48e5-bb5c-50a79c3105a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "026f72ad-e4bd-4802-8591-4505b27fb77b", + "lastUpdateDateTime": "2022-02-18T19:00:04Z", + "createdDateTime": "2022-02-18T19:00:04Z", + "expirationDateTime": "2022-02-19T19:00:04Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/026f72ad-e4bd-4802-8591-4505b27fb77b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000103-0000000000000206-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8da12bd7-b3d2-41f4-8c60-1d3925210a26" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f1f4fc0-e488-4653-b790-b3fbda2abbc5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "026f72ad-e4bd-4802-8591-4505b27fb77b", + "lastUpdateDateTime": "2022-02-18T19:00:05Z", + "createdDateTime": "2022-02-18T19:00:04Z", + "expirationDateTime": "2022-02-19T19:00:04Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/026f72ad-e4bd-4802-8591-4505b27fb77b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000104-0000000000000208-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "739cf73c-07ab-46fa-97a7-ecdd26d29ce8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf1b96af-5a7d-4d24-871d-bbded23657b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "026f72ad-e4bd-4802-8591-4505b27fb77b", + "lastUpdateDateTime": "2022-02-18T19:00:08Z", + "createdDateTime": "2022-02-18T19:00:04Z", + "expirationDateTime": "2022-02-19T19:00:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:08.3250317Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/026f72ad-e4bd-4802-8591-4505b27fb77b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000105-0000000000000210-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d6eaa3f8-670b-4f61-9cdf-2157f562f858" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b0c6d17-40ef-4164-93b6-472fe9c12306", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "026f72ad-e4bd-4802-8591-4505b27fb77b", + "lastUpdateDateTime": "2022-02-18T19:00:08Z", + "createdDateTime": "2022-02-18T19:00:04Z", + "expirationDateTime": "2022-02-19T19:00:04Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:08.3250317Z", + "state": "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 + }, + { + "text": "April 4, 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 54, + "length": 13, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "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 + }, + { + "text": "4 de abril de 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 53, + "length": 18, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 1.0 + }, + { + "text": "4. April 1975", + "category": "DateTime", + "subcategory": "Date", + "offset": 19, + "length": 13, + "confidenceScore": 0.8 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 37, + "length": 10, + "confidenceScore": 1.0 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 52, + "length": 10, + "confidenceScore": 1.0 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js deleted file mode 100644 index 76a43681f7be..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js +++ /dev/null @@ -1,124 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cbf03ddee2860872f977286316a65b6f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/dd285b4d-ff5c-4677-9fe7-2d4a454d8f94', - 'x-envoy-upstream-service-time', - '299', - 'apim-request-id', - 'bfa11517-fc42-44e9-b9ad-8fed217135b7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dd285b4d-ff5c-4677-9fe7-2d4a454d8f94') - .query(true) - .reply(200, {"jobId":"dd285b4d-ff5c-4677-9fe7-2d4a454d8f94","lastUpdateDateTime":"2021-10-23T00:37:12Z","createdDateTime":"2021-10-23T00:37:12Z","expirationDateTime":"2021-10-24T00:37:12Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'e2bda075-fd36-4e95-8356-6ff5386ba425', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dd285b4d-ff5c-4677-9fe7-2d4a454d8f94') - .query(true) - .reply(200, {"jobId":"dd285b4d-ff5c-4677-9fe7-2d4a454d8f94","lastUpdateDateTime":"2021-10-23T00:37:12Z","createdDateTime":"2021-10-23T00:37:12Z","expirationDateTime":"2021-10-24T00:37:12Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'c509ccc1-8b87-469c-a458-f832d95098f0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dd285b4d-ff5c-4677-9fe7-2d4a454d8f94') - .query(true) - .reply(200, {"jobId":"dd285b4d-ff5c-4677-9fe7-2d4a454d8f94","lastUpdateDateTime":"2021-10-23T00:37:13Z","createdDateTime":"2021-10-23T00:37:12Z","expirationDateTime":"2021-10-24T00:37:12Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '7f1701cb-33fa-4611-baae-0d53b44d3844', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dd285b4d-ff5c-4677-9fe7-2d4a454d8f94') - .query(true) - .reply(200, {"jobId":"dd285b4d-ff5c-4677-9fe7-2d4a454d8f94","lastUpdateDateTime":"2021-10-23T00:37:15Z","createdDateTime":"2021-10-23T00:37:12Z","expirationDateTime":"2021-10-24T00:37:12Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:15.8148332Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '113', - 'apim-request-id', - '34afc424-a322-4eea-91b7-054a32d11476', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/dd285b4d-ff5c-4677-9fe7-2d4a454d8f94') - .query(true) - .reply(200, {"jobId":"dd285b4d-ff5c-4677-9fe7-2d4a454d8f94","lastUpdateDateTime":"2021-10-23T00:37:15Z","createdDateTime":"2021-10-23T00:37:12Z","expirationDateTime":"2021-10-24T00:37:12Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:15.8148332Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '75', - 'apim-request-id', - '8580b424-4888-4bb7-afac-ad175ac9e9d8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:17 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json new file mode 100644 index 000000000000..06a6cf14e77b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json @@ -0,0 +1,341 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "319", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000090-0000000000000180-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fef522d0-0285-4fbe-8fe3-b7259331a614" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "47edda8d-7216-4735-bf99-4ee426ec19da", + "Date": "Fri, 18 Feb 2022 18:59:57 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9f4df116-1a56-45e3-b3ae-dec5f43f5461", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9f4df116-1a56-45e3-b3ae-dec5f43f5461?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000091-0000000000000182-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7966d162-5787-4e61-a940-e1af61dda15b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "50497761-cd11-433a-b2fa-6921bd2edac7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "9f4df116-1a56-45e3-b3ae-dec5f43f5461", + "lastUpdateDateTime": "2022-02-18T18:59:57Z", + "createdDateTime": "2022-02-18T18:59:57Z", + "expirationDateTime": "2022-02-19T18:59:57Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9f4df116-1a56-45e3-b3ae-dec5f43f5461?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000092-0000000000000184-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d0b773a6-a702-47c3-9e6e-f0cf93a421cd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "07d0f51e-9df3-47f0-aab8-8fd81110dcc6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "9f4df116-1a56-45e3-b3ae-dec5f43f5461", + "lastUpdateDateTime": "2022-02-18T18:59:57Z", + "createdDateTime": "2022-02-18T18:59:57Z", + "expirationDateTime": "2022-02-19T18:59:57Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9f4df116-1a56-45e3-b3ae-dec5f43f5461?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000093-0000000000000186-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2fa9349b-ceac-4ac1-a76d-ed824f04a92d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1089f332-3d70-4006-9b37-8ad0c149cdd9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "9f4df116-1a56-45e3-b3ae-dec5f43f5461", + "lastUpdateDateTime": "2022-02-18T18:59:59Z", + "createdDateTime": "2022-02-18T18:59:57Z", + "expirationDateTime": "2022-02-19T18:59:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T18:59:59.5548059Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/9f4df116-1a56-45e3-b3ae-dec5f43f5461?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000094-0000000000000188-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7d93b41a-9cf1-420f-89f5-4fbfde36fcf4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8900da26-d0ff-486d-b88b-126a1d1087f3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "jobId": "9f4df116-1a56-45e3-b3ae-dec5f43f5461", + "lastUpdateDateTime": "2022-02-18T18:59:59Z", + "createdDateTime": "2022-02-18T18:59:57Z", + "expirationDateTime": "2022-02-19T18:59:57Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T18:59:59.5548059Z", + "state": "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": [] + }, + { + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.js deleted file mode 100644 index b0de6fe9d1f6..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.js +++ /dev/null @@ -1,264 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a788ea793ca9ab6cfdd7b8b7eb1d2dfd"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\n \n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\n \n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\n \n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\n \n “Traditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,” he explained. “Based on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.”\n \n “Now, with Windows 365, we can do that within less than an hour of the account being created,” he said.\n \n Windows 365 puts Microsoft’s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\n \n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.\n \n “Windows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not – maybe it was too costly, too complex or they didn’t have the expertise in house to do it,” said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\n \n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\n \n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user’s choosing from anywhere with an internet connection.\n \n “You want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office – you want them to have that same experience,” he said. “And you want them to have that experience in such a way that it feels familiar to them. It’s not this jolting thing that takes away all the things they love about Windows.”\n \n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft’s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\n \n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience – gamers – lacks an IT department to lean on when things glitch. “That started me thinking, ‘How do we build something that doesn’t require IT intervention, something that could truly scale to the consumer market?’” Manchester said.\n \n The consumer experience was Manchester’s benchmark when he started work on virtualization.\n \n “I took note of every time there was something that didn’t quite deliver on that,” he said. “And, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.”\n \n Covering that ground led to improvements in Microsoft’s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\n \n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\n \n “When we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,” he said.\n \n Soon after this bar was set, and the first batch of hires made – a handful of experts in virtualization and user experience – COVID-19 hit and changed the world.\n \n “We hired everybody else during the pandemic,” Manchester said. “They were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations – their bar was the experience they had on their laptop – and we basically used Windows 365 to build Windows 365.”\n \n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\n \n “We’re giving you Windows from the cloud,” Manchester said.\n ","language":"en"},{"id":"1","text":"\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said. She explained that customers were asking, “’How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?”\n\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there – in the office, at home or a coffee shop.\n\n “And then, when you’re done, you’re done. You won’t have any issues around security because you’re not saving anything on your device,” McKelvey said, noting that all the data is stored in the cloud.\n\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\n\n “I think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,” McKelvey said.\n\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\n\n We didn’t run it for very long,” he said. “It didn’t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.”\n\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government’s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester’s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\n\n “The impact that I believe we are finding, and the impact that we’re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,” he said.\n\n “Being able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.”\n ","language":"en"}]},"tasks":{"extractiveSummarizationTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit","sentenceCount":5,"sortBy":"Offset"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0', - 'x-envoy-upstream-service-time', - '243', - 'apim-request-id', - '84fd598c-eb2a-4521-9d5d-bffd91d2fbc2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:53Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - 'f8cf5623-c966-4e68-8fc6-26cb719cc4aa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:53Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '59', - 'apim-request-id', - 'e2422fd1-f6d4-4d10-b80d-e73c00f5c254', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:53Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '80e0050e-99d2-4be3-92e9-9c60ec58d505', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:53Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '9e339b03-867c-4876-80c6-d83c384a84ea', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:59Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '4e1ed63e-0955-4c32-a5d9-8ec5253f4ca7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:36:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:59Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '725ef895-fe4e-4744-8976-13547c2ddc83', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:59Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - 'ad802531-9d22-4f96-b915-434753540b7a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:59Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '9cac6826-7d5b-4941-a924-cbf3c631e14a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:59Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '786aa9f7-4b15-4181-b9f6-839dbb36195f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:36:59Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'bd16e5cb-b615-4633-80d5-eec065099238', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:37:11Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"extractiveSummarizationTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:11.6834538Z","state":"succeeded","results":{"documents":[{"id":"0","sentences":[{"text":"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.","rankScore":0.24,"offset":531,"length":160},{"text":"Windows 365 puts Microsoft’s flagship operating system in the cloud.","rankScore":0.26,"offset":1864,"length":68},{"text":"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.","rankScore":0.26,"offset":2283,"length":184},{"text":"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.","rankScore":0.49,"offset":2468,"length":156},{"text":"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.","rankScore":1,"offset":2625,"length":156}],"warnings":[]},{"id":"1","sentences":[{"text":"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.","rankScore":0.63,"offset":11,"length":274},{"text":"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.","rankScore":0.79,"offset":1109,"length":234},{"text":"It enables employees accustomed to working from home to continue working from home;","rankScore":1,"offset":1344,"length":83},{"text":"it enables companies to hire interns from halfway around the world;","rankScore":0.86,"offset":1428,"length":67},{"text":"it allows startups to scale without requiring IT expertise.","rankScore":0.66,"offset":1496,"length":59}],"warnings":[]}],"errors":[],"modelVersion":"2021-08-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '70', - 'apim-request-id', - '8efb1cd1-9ea5-44ac-b38c-53bb50269631', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/a118d800-5876-4332-accb-fc9a501937a0') - .query(true) - .reply(200, {"jobId":"a118d800-5876-4332-accb-fc9a501937a0","lastUpdateDateTime":"2021-10-23T00:37:11Z","createdDateTime":"2021-10-23T00:36:53Z","expirationDateTime":"2021-10-24T00:36:53Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"extractiveSummarizationTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:11.6834538Z","state":"succeeded","results":{"documents":[{"id":"0","sentences":[{"text":"The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.","rankScore":0.24,"offset":531,"length":160},{"text":"Windows 365 puts Microsoft’s flagship operating system in the cloud.","rankScore":0.26,"offset":1864,"length":68},{"text":"The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365.","rankScore":0.26,"offset":2283,"length":184},{"text":"Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.","rankScore":0.49,"offset":2468,"length":156},{"text":"Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today’s login-from-anywhere, mobile and elastic workforces.","rankScore":1,"offset":2625,"length":156}],"warnings":[]},{"id":"1","sentences":[{"text":"Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but “what really put the firecracker behind it was the pandemic, it accelerated everything,” McKelvey said.","rankScore":0.63,"offset":11,"length":274},{"text":"The ability to login to a Cloud PC from anywhere on any device is part of Microsoft’s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.","rankScore":0.79,"offset":1109,"length":234},{"text":"It enables employees accustomed to working from home to continue working from home;","rankScore":1,"offset":1344,"length":83},{"text":"it enables companies to hire interns from halfway around the world;","rankScore":0.86,"offset":1428,"length":67},{"text":"it allows startups to scale without requiring IT expertise.","rankScore":0.66,"offset":1496,"length":59}],"warnings":[]}],"errors":[],"modelVersion":"2021-08-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '127', - 'apim-request-id', - '94c058aa-b904-4627-863a-8c37ccd96cd7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:12 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json new file mode 100644 index 000000000000..49387ec75553 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_extract_summary_action.json @@ -0,0 +1,455 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "11477", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000083-0000000000000166-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cc83dea9-3dcd-448f-b707-75f85299b354" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "\n No roads or rails connect the 39,000 people dispersed across Nunavut, a territory in northeastern Canada that spans three time zones and features fjord-cut isles that stretch into the Arctic Circle off the west coast of Greenland. About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.\n \n Today, low-bandwidth satellite internet service links the people of Nunavut to each other and with the rest of the world.\n \n The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities. The smallest, Grise Fiord, has a population of 130; the largest, the capital, Iqaluit, has 8,500 people. About 3,100 people work full-time for the government, which has an office in each community. Another 3,000 people work for the government as relief workers, casual, term or contractors.\n \n Managing information technology for this dispersed and elastic workforce is a constant challenge for Martin Joy, director of information communication and technology for the Government of Nunavut.\n \n \u201CTraditionally, in IT, you would have to send a device or mail a device to that end user. In Nunavut, there is no road, there is no logistical framework that allows us to move stuff cost-effectively, so everything has to be flown,\u201D he explained. \u201CBased on weather, based on the types of cargo flows, that could take a considerable amount of time. It could take two to three weeks for us to get a user a device to get them onboarded securely into our environment.\u201D\n \n \u201CNow, with Windows 365, we can do that within less than an hour of the account being created,\u201D he said.\n \n Windows 365 puts Microsoft\u2019s flagship operating system in the cloud. Users select Windows 10 or Windows 11, once it is generally available later this calendar year, along with a configuration of processing power, storage and memory that suits their needs. They then access their Cloud PC through a native application or web browser on any device, from anywhere with an internet connection.\n \n The creation of the Cloud PC follows other products and services to the cloud, from Windows Server on Azure to the suite of Microsoft Office productivity applications in Microsoft 365. Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service. Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.\n \n \u201CWindows 365 is really going to make a huge difference for organizations that wanted to try virtualization for various reasons but could not \u2013 maybe it was too costly, too complex or they didn\u2019t have the expertise in house to do it,\u201D said Wangui McKelvey, general manager of Microsoft 365, who works from a home office in Atlanta, Georgia.\n \n With Windows 365, she added, IT admins can manage and deploy Cloud PCs using the same tools they use today to manage physical PCs.\n \n The remote and hybrid workforces of today and tomorrow were top of mind for Scott Manchester when he set out to develop Windows 365. The director of program management for Windows 365 in Redmond, Washington, wanted to deliver an experience with the look, feel and security of a traditional Windows PC, only accessed through a native app or web browser on a device of the user\u2019s choosing from anywhere with an internet connection.\n \n \u201CYou want them to be able to get access to their corporate resources, applications, databases and HR tools, and do all the things they do in a typical workday sitting in the office \u2013 you want them to have that same experience,\u201D he said. \u201CAnd you want them to have that experience in such a way that it feels familiar to them. It\u2019s not this jolting thing that takes away all the things they love about Windows.\u201D\n \n Virtualization, he noted, can be challenging to set up and maintain, especially for organizations without dedicated IT resources. IT consulting firms do brisk business working with companies to set up virtualization solutions and staffing help desks to field calls from employees when they run into complications. Manchester knows this because he worked on Microsoft\u2019s Windows virtualization technologies for nearly two decades prior to leading the development of Windows 365.\n \n The inspiration for Windows 365 came earlier, when he was assigned to an internal team at Microsoft working on a project, code named Arcadia, a consumer-facing service that would stream video games from the cloud. The target audience \u2013 gamers \u2013 lacks an IT department to lean on when things glitch. \u201CThat started me thinking, \u2018How do we build something that doesn\u2019t require IT intervention, something that could truly scale to the consumer market?\u2019\u201D Manchester said.\n \n The consumer experience was Manchester\u2019s benchmark when he started work on virtualization.\n \n \u201CI took note of every time there was something that didn\u2019t quite deliver on that,\u201D he said. \u201CAnd, as I started meeting with customers and partners and learning about how they fill in these gaps either by setting expectations of their workforce or having an IT department that picks up the phone and deals with those situations, I realized we had some ground to cover.\u201D\n \n Covering that ground led to improvements in Microsoft\u2019s business offering now known as Azure Virtual Desktop. This offering continues to experience accelerated growth among customers who need full customization and control over their operating environment and have the resources for dedicated IT staff to support the system, Manchester noted. Windows 365 is for the approximate 80% of the marketplace that lacks the need for full customization or the resources for dedicated IT.\n \n To lead the development of Windows 365, Manchester leaned into his Arcadia mindset.\n \n \u201CWhen we built this team, we brought in a couple of leaders who had experience with virtualization, but for the most part we brought in people who had experience with Windows and experience with consumer experiences because that was the bar we wanted to set,\u201D he said.\n \n Soon after this bar was set, and the first batch of hires made \u2013 a handful of experts in virtualization and user experience \u2013 COVID-19 hit and changed the world.\n \n \u201CWe hired everybody else during the pandemic,\u201D Manchester said. \u201CThey were remote. They were living all over the U.S., Australia, Europe and China. Many of them have never set foot in the office. And as soon as we got far enough along with the development, we moved those people to use the service. People who never used virtualization before, had no expectations \u2013 their bar was the experience they had on their laptop \u2013 and we basically used Windows 365 to build Windows 365.\u201D\n \n As the team used the service and encountered bugs in the system, they worked through and solved them on their way to creating a unique category of virtualization, the Cloud PC.\n \n \u201CWe\u2019re giving you Windows from the cloud,\u201D Manchester said.\n ", + "language": "en" + }, + { + "id": "1", + "text": "\n Windows 365 was in the works before COVID-19 sent companies around the world on a scramble to secure solutions to support employees suddenly forced to work from home, but \u201Cwhat really put the firecracker behind it was the pandemic, it accelerated everything,\u201D McKelvey said. She explained that customers were asking, \u201C\u2019How do we create an experience for people that makes them still feel connected to the company without the physical presence of being there?\u201D\n\n In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account. From there, their Cloud PC appears with their background, apps, settings and content just as they left it when they last were last there \u2013 in the office, at home or a coffee shop.\n\n \u201CAnd then, when you\u2019re done, you\u2019re done. You won\u2019t have any issues around security because you\u2019re not saving anything on your device,\u201D McKelvey said, noting that all the data is stored in the cloud.\n\n The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added. It enables employees accustomed to working from home to continue working from home; it enables companies to hire interns from halfway around the world; it allows startups to scale without requiring IT expertise.\n\n \u201CI think this will be interesting for those organizations who, for whatever reason, have shied away from virtualization. This is giving them an opportunity to try it in a way that their regular, everyday endpoint admin could manage,\u201D McKelvey said.\n\n The simplicity of Windows 365 won over Dean Wells, the corporate chief information officer for the Government of Nunavut. His team previously attempted to deploy a traditional virtual desktop infrastructure and found it inefficient and unsustainable given the limitations of low-bandwidth satellite internet and the constant need for IT staff to manage the network and infrastructure.\n\n We didn\u2019t run it for very long,\u201D he said. \u201CIt didn\u2019t turn out the way we had hoped. So, we actually had terminated the project and rolled back out to just regular PCs.\u201D\n\n He re-evaluated this decision after the Government of Nunavut was hit by a ransomware attack in November 2019 that took down everything from the phone system to the government\u2019s servers. Microsoft helped rebuild the system, moving the government to Teams, SharePoint, OneDrive and Microsoft 365. Manchester\u2019s team recruited the Government of Nunavut to pilot Windows 365. Wells was intrigued, especially by the ability to manage the elastic workforce securely and seamlessly.\n\n \u201CThe impact that I believe we are finding, and the impact that we\u2019re going to find going forward, is being able to access specialists from outside the territory and organizations outside the territory to come in and help us with our projects, being able to get people on staff with us to help us deliver the day-to-day expertise that we need to run the government,\u201D he said.\n\n \u201CBeing able to improve healthcare, being able to improve education, economic development is going to improve the quality of life in the communities.\u201D\n ", + "language": "en" + } + ] + }, + "tasks": { + "extractiveSummarizationTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit", + "sentenceCount": 5, + "sortBy": "Offset" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3372c0b4-37a4-4f57-a042-efb2676b3904", + "Date": "Fri, 18 Feb 2022 18:59:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000084-0000000000000168-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "02d99c39-0415-47e1-8b8c-6ea7f4160a48" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "96a0b917-a91c-48c6-b48f-81cf09dd9648", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "lastUpdateDateTime": "2022-02-18T18:59:49Z", + "createdDateTime": "2022-02-18T18:59:49Z", + "expirationDateTime": "2022-02-19T18:59:49Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000085-0000000000000170-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1313d569-63f6-4e30-bca3-81184c00355d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d9d0769d-977c-4778-91a5-1c245606eb6e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "lastUpdateDateTime": "2022-02-18T18:59:49Z", + "createdDateTime": "2022-02-18T18:59:49Z", + "expirationDateTime": "2022-02-19T18:59:49Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000086-0000000000000172-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "270d9bf8-1648-4dc1-98de-2c73f0a7dc64" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f1fa89e5-bf3e-46ee-95e0-2438ed7f531a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "lastUpdateDateTime": "2022-02-18T18:59:49Z", + "createdDateTime": "2022-02-18T18:59:49Z", + "expirationDateTime": "2022-02-19T18:59:49Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000087-0000000000000174-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d1ec2eb5-8aeb-4a4e-93d8-cae7f31e50b8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2914f158-eb3a-4ecf-8c97-89a9366c10cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "lastUpdateDateTime": "2022-02-18T18:59:49Z", + "createdDateTime": "2022-02-18T18:59:49Z", + "expirationDateTime": "2022-02-19T18:59:49Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000088-0000000000000176-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cdeedd40-a664-4918-adca-b0c08abf9e29" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b50d173-92af-4163-b055-97e2d2822305", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "jobId": "a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "lastUpdateDateTime": "2022-02-18T18:59:55Z", + "createdDateTime": "2022-02-18T18:59:49Z", + "expirationDateTime": "2022-02-19T18:59:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T18:59:55.0935647Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a294726c-3f4b-45ad-b692-bb1501ff0f5d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000089-0000000000000178-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cf327b6d-3763-4a46-bb3d-666942ac450f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7d5a3db-0acf-4908-80c7-3699a7e2ffde", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 18:59:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "jobId": "a294726c-3f4b-45ad-b692-bb1501ff0f5d", + "lastUpdateDateTime": "2022-02-18T18:59:55Z", + "createdDateTime": "2022-02-18T18:59:49Z", + "expirationDateTime": "2022-02-19T18:59:49Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "extractiveSummarizationTasks": [ + { + "lastUpdateDateTime": "2022-02-18T18:59:55.0935647Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentences": [ + { + "text": "About 80% of the population is of Inuit descent with cultural ties to the land that date back more than 4,000 years.", + "rankScore": 0.32, + "offset": 242, + "length": 116 + }, + { + "text": "The Government of Nunavut relies on this internet link to provide healthcare, education, housing and family, and financial and other services to 25 communities.", + "rankScore": 0.35, + "offset": 531, + "length": 160 + }, + { + "text": "Windows 365 puts Microsoft\u2019s flagship operating system in the cloud.", + "rankScore": 0.34, + "offset": 1864, + "length": 68 + }, + { + "text": "Windows is already accessible in the cloud via Azure Virtual Desktop, which offers customers flexibility to create and run their own virtualization service.", + "rankScore": 0.69, + "offset": 2468, + "length": 156 + }, + { + "text": "Windows 365 is a new virtualization technology for Windows that is easy to set up and deploy for today\u2019s login-from-anywhere, mobile and elastic workforces.", + "rankScore": 1.0, + "offset": 2625, + "length": 156 + } + ], + "warnings": [] + }, + { + "id": "1", + "sentences": [ + { + "text": "In this new world of Windows 365, remote workers flip the lid on their laptop, bootup the family workstation or clip a keyboard onto a tablet, launch a native app or modern web browser and login to their Windows 365 account.", + "rankScore": 0.9, + "offset": 482, + "length": 224 + }, + { + "text": "The ability to login to a Cloud PC from anywhere on any device is part of Microsoft\u2019s larger strategy around tailoring products such as Microsoft Teams and Microsoft 365 for the post-pandemic hybrid workforce of the future, she added.", + "rankScore": 0.66, + "offset": 1109, + "length": 234 + }, + { + "text": "It enables employees accustomed to working from home to continue working from home;", + "rankScore": 1.0, + "offset": 1344, + "length": 83 + }, + { + "text": "it enables companies to hire interns from halfway around the world;", + "rankScore": 0.71, + "offset": 1428, + "length": 67 + }, + { + "text": "it allows startups to scale without requiring IT expertise.", + "rankScore": 0.68, + "offset": 1496, + "length": 59 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-08-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js deleted file mode 100644 index 9ff546ecdd6a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js +++ /dev/null @@ -1,204 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "61c6632849c9566300af4ee3c143eac6"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4', - 'x-envoy-upstream-service-time', - '226', - 'apim-request-id', - '18411384-a36f-4f2f-a185-cd7c680f953f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '381ec100-b7f7-4323-a144-a80ecb107da2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - '7a3f905a-caba-48fd-8021-eeb48183aa1b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '546274ab-29c1-4c72-a440-936b63a937ff', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '59', - 'apim-request-id', - '2cb82066-5e2e-4126-b316-d1977ce74ab1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'ee1fb2c9-18ad-4710-a7bb-a1d032710805', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '044ba624-c68d-4746-94eb-ef52aa3fec4e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:17Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'ece992d6-d3af-4c07-ac3c-a110a65c4a42', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:29Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:29.3783566Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '75', - 'apim-request-id', - '313e7dee-bb82-4613-8229-f594f6d19b60', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/c0454e00-e103-413c-ad90-f090e68086c4') - .query(true) - .reply(200, {"jobId":"c0454e00-e103-413c-ad90-f090e68086c4","lastUpdateDateTime":"2021-10-23T00:37:29Z","createdDateTime":"2021-10-23T00:37:17Z","expirationDateTime":"2021-10-24T00:37:17Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:29.3783566Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '81', - 'apim-request-id', - '3fe79ab0-29e0-4c9d-8008-c48b971cfb9c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:30 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json new file mode 100644 index 000000000000..61846475a650 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json @@ -0,0 +1,268 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "287", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000095-0000000000000190-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "981b1293-5fe7-4207-966d-a090a751d46c" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen", + "language": "en" + }, + { + "id": "2", + "text": "Microsoft fue fundado por Bill Gates y Paul Allen", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8a354d5b-748c-4684-b075-532042754b46", + "Date": "Fri, 18 Feb 2022 19:00:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e98e2c31-b806-4479-9eef-8ccf51fc011d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "195" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e98e2c31-b806-4479-9eef-8ccf51fc011d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000096-0000000000000192-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e891b27f-e9d9-42a2-ba87-51984d7f3abf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52ff5630-9bdd-4254-b442-40754432edd9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "e98e2c31-b806-4479-9eef-8ccf51fc011d", + "lastUpdateDateTime": "2022-02-18T19:00:01Z", + "createdDateTime": "2022-02-18T19:00:00Z", + "expirationDateTime": "2022-02-19T19:00:00Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e98e2c31-b806-4479-9eef-8ccf51fc011d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000097-0000000000000194-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d81fe2be-5d03-436b-8385-4cd37eae4f27" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b4a7ea1-2dce-4147-adf6-04eddeae3135", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "e98e2c31-b806-4479-9eef-8ccf51fc011d", + "lastUpdateDateTime": "2022-02-18T19:00:01Z", + "createdDateTime": "2022-02-18T19:00:00Z", + "expirationDateTime": "2022-02-19T19:00:00Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e98e2c31-b806-4479-9eef-8ccf51fc011d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000098-0000000000000196-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "465ada0b-08ba-40ba-aa9b-ec0b9bae9cd6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfaefb39-8b25-48b4-94a5-1fd9701f8d23", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "e98e2c31-b806-4479-9eef-8ccf51fc011d", + "lastUpdateDateTime": "2022-02-18T19:00:02Z", + "createdDateTime": "2022-02-18T19:00:00Z", + "expirationDateTime": "2022-02-19T19:00:00Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:02.7559344Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/e98e2c31-b806-4479-9eef-8ccf51fc011d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000099-0000000000000198-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8602917e-6d84-4d00-858a-ce1b6fbd6b5a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b55dc0d3-2020-4914-a19d-4a945f218e43", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "e98e2c31-b806-4479-9eef-8ccf51fc011d", + "lastUpdateDateTime": "2022-02-18T19:00:02Z", + "createdDateTime": "2022-02-18T19:00:00Z", + "expirationDateTime": "2022-02-19T19:00:00Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:02.7559344Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js deleted file mode 100644 index 3b6f7443b356..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js +++ /dev/null @@ -1,104 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "5e57524070a1097a4629feb2ca2d4fbc"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"3","text":"Is 998.214.865-68 your Brazilian CPF number?"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b7dd4cd0-bc84-48b5-9467-0aae0f34382b', - 'x-envoy-upstream-service-time', - '457', - 'apim-request-id', - 'a30c0028-a676-418c-93fa-4d56151db688', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b7dd4cd0-bc84-48b5-9467-0aae0f34382b') - .query(true) - .reply(200, {"jobId":"b7dd4cd0-bc84-48b5-9467-0aae0f34382b","lastUpdateDateTime":"2021-10-23T00:37:49Z","createdDateTime":"2021-10-23T00:37:48Z","expirationDateTime":"2021-10-24T00:37:48Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '16', - 'apim-request-id', - 'df1c8f17-80b6-44e6-9ba2-27d75f239de8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b7dd4cd0-bc84-48b5-9467-0aae0f34382b') - .query(true) - .reply(200, {"jobId":"b7dd4cd0-bc84-48b5-9467-0aae0f34382b","lastUpdateDateTime":"2021-10-23T00:37:49Z","createdDateTime":"2021-10-23T00:37:48Z","expirationDateTime":"2021-10-24T00:37:48Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '57', - 'apim-request-id', - '3e75b10c-e3e1-44ef-a7c6-be92ffa3b1a6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b7dd4cd0-bc84-48b5-9467-0aae0f34382b') - .query(true) - .reply(200, {"jobId":"b7dd4cd0-bc84-48b5-9467-0aae0f34382b","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:48Z","expirationDateTime":"2021-10-24T00:37:48Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:51.0280911Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '150', - 'apim-request-id', - '26ab3993-0c03-4d60-99c4-31fb80240ee7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b7dd4cd0-bc84-48b5-9467-0aae0f34382b') - .query(true) - .reply(200, {"jobId":"b7dd4cd0-bc84-48b5-9467-0aae0f34382b","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:48Z","expirationDateTime":"2021-10-24T00:37:48Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:37:51.0280911Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '77', - 'apim-request-id', - '6e6c8db9-cecb-4c3a-965e-5b9dec3dd8e4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:51 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json new file mode 100644 index 000000000000..553cc2317851 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json @@ -0,0 +1,407 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "383", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000112-0000000000000224-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5286c97f-6580-449e-8b7a-b770e5d08c2d" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "3", + "text": "Is 998.214.865-68 your Brazilian CPF number?" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "862b0ab3-7f57-42f8-9d03-ab04fe6e04f0", + "Date": "Fri, 18 Feb 2022 19:00:14 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "242" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000113-0000000000000226-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "531a38b0-3b08-4040-aa35-5560277c0c52" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6fac32d1-374d-409b-91cf-72a2a1ae7f4c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "lastUpdateDateTime": "2022-02-18T19:00:15Z", + "createdDateTime": "2022-02-18T19:00:15Z", + "expirationDateTime": "2022-02-19T19:00:15Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000114-0000000000000228-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a5babeac-4e60-4ad9-bcbd-b2cf14afb8da" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "067e8304-b263-4119-a8f6-1890f5554e03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "lastUpdateDateTime": "2022-02-18T19:00:15Z", + "createdDateTime": "2022-02-18T19:00:15Z", + "expirationDateTime": "2022-02-19T19:00:15Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000115-0000000000000230-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "67bfab35-9c8d-446c-ba58-cc0977414352" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc3221ed-92e1-4299-9954-2e68fa58959e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "lastUpdateDateTime": "2022-02-18T19:00:16Z", + "createdDateTime": "2022-02-18T19:00:15Z", + "expirationDateTime": "2022-02-19T19:00:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000116-0000000000000232-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f72e5ae5-e0a9-4f4b-bada-ccaff70193bc" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f7efdc75-6c09-4136-aae1-c03b66f43911", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "lastUpdateDateTime": "2022-02-18T19:00:16Z", + "createdDateTime": "2022-02-18T19:00:15Z", + "expirationDateTime": "2022-02-19T19:00:15Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000117-0000000000000234-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3f28f7f2-62a5-4289-92be-998ca4b68a9f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d98d469-b357-4154-bdef-5cc03f7157c9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "247" + }, + "ResponseBody": { + "jobId": "2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "lastUpdateDateTime": "2022-02-18T19:00:20Z", + "createdDateTime": "2022-02-18T19:00:15Z", + "expirationDateTime": "2022-02-19T19:00:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:20.6927315Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2433e08b-d637-4955-b9ef-a870ea5e1c5b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000118-0000000000000236-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "84e3d0b6-44de-464e-bdb0-a198a9d27224" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f8446d70-ef8f-458e-9a38-836ec4705b99", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "2433e08b-d637-4955-b9ef-a870ea5e1c5b", + "lastUpdateDateTime": "2022-02-18T19:00:20Z", + "createdDateTime": "2022-02-18T19:00:15Z", + "expirationDateTime": "2022-02-19T19:00:15Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:20.6927315Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is ***********.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "PhoneNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABARoutingNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "NZSocialWelfareNumber", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Is 998.214.865-68 your Brazilian CPF number?", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.js deleted file mode 100644 index 6ff6eedbd59d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.js +++ /dev/null @@ -1,164 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c669728e0d1db74e6165e8ee080b20d0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","piiCategories":["USSocialSecurityNumber"],"stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a', - 'x-envoy-upstream-service-time', - '244', - 'apim-request-id', - '50d58be9-8b35-400f-b93f-a1a7b7c54e86', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2c0f5269-2199-4caf-b677-d2afd6f8ff31', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '75c42f38-daea-48e2-a391-64fc2dc66e71', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'd4dbe6f3-df89-4f5f-90b9-90f0467a56f4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '69008647-0fa9-4cf5-8e4d-19b808df2dd1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:37:51Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'f1be1aaa-55bb-409d-ba41-c718fad81a55', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:38:00Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:00.1142045Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '127', - 'apim-request-id', - 'bf3e2d46-9c13-464d-a254-44d31aeb4052', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:37:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/4f79b146-c44b-47ca-bad2-a4b4efdcb26a') - .query(true) - .reply(200, {"jobId":"4f79b146-c44b-47ca-bad2-a4b4efdcb26a","lastUpdateDateTime":"2021-10-23T00:38:00Z","createdDateTime":"2021-10-23T00:37:51Z","expirationDateTime":"2021-10-24T00:37:51Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:00.1142045Z","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '157', - 'apim-request-id', - 'ba10975d-8f68-42c9-b554-73c05144f5c0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:00 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json new file mode 100644 index 000000000000..4cd80b844e79 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action_with_categories_filtered.json @@ -0,0 +1,274 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "470", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000119-0000000000000238-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cb3c4b34-05ee-4257-a531-0dccbbf7f73f" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "My SSN is 859-98-0987 and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "piiCategories": [ + "USSocialSecurityNumber" + ], + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "71c26591-32ce-4628-810c-acc44cc45bf4", + "Date": "Fri, 18 Feb 2022 19:00:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4c462c53-a192-4852-b449-c49e66956cfb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4c462c53-a192-4852-b449-c49e66956cfb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000120-0000000000000240-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a459a265-3f75-4a9f-825e-95a6ebb1ec2e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8e01f45a-894e-4f95-affc-39a6b9d3bb43", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "4c462c53-a192-4852-b449-c49e66956cfb", + "lastUpdateDateTime": "2022-02-18T19:00:23Z", + "createdDateTime": "2022-02-18T19:00:23Z", + "expirationDateTime": "2022-02-19T19:00:23Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4c462c53-a192-4852-b449-c49e66956cfb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000121-0000000000000242-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "dfc20590-7abb-480b-ab31-07e57b212c86" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "addd402e-3a93-453b-a588-507884a5ee84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "4c462c53-a192-4852-b449-c49e66956cfb", + "lastUpdateDateTime": "2022-02-18T19:00:23Z", + "createdDateTime": "2022-02-18T19:00:23Z", + "expirationDateTime": "2022-02-19T19:00:23Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4c462c53-a192-4852-b449-c49e66956cfb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000122-0000000000000244-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b01a44b2-d325-400a-becf-3cfa5da90b4d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "40e3e834-142f-424d-9433-08d7ec3de619", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" + }, + "ResponseBody": { + "jobId": "4c462c53-a192-4852-b449-c49e66956cfb", + "lastUpdateDateTime": "2022-02-18T19:00:25Z", + "createdDateTime": "2022-02-18T19:00:23Z", + "expirationDateTime": "2022-02-19T19:00:23Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:25.4650255Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/4c462c53-a192-4852-b449-c49e66956cfb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000123-0000000000000246-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "30c8d8fe-97cd-47fe-bd4a-421d307d18ee" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19849dab-053a-4b2b-b2bd-b8872b0d5649", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "4c462c53-a192-4852-b449-c49e66956cfb", + "lastUpdateDateTime": "2022-02-18T19:00:25Z", + "createdDateTime": "2022-02-18T19:00:23Z", + "expirationDateTime": "2022-02-19T19:00:23Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:25.4650255Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "My SSN is *********** and your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "USSocialSecurityNumber", + "offset": 10, + "length": 11, + "confidenceScore": 0.65 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js deleted file mode 100644 index 52794ea3d02e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js +++ /dev/null @@ -1,324 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "47ccb6b273464d762e251199e8b5c042"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"The food was unacceptable","language":"en"},{"id":"1","text":"The rooms were beautiful. The AC was good and quiet.","language":"en"},{"id":"2","text":"The breakfast was good, but the toilet was smelly.","language":"en"},{"id":"3","text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","language":"en"},{"id":"4","text":"I had a great unobstructed view of the Microsoft campus.","language":"en"},{"id":"5","text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","language":"en"},{"id":"6","text":"The toilet smelled.","language":"en"}]},"tasks":{"sentimentAnalysisTasks":[{"parameters":{"opinionMining":true,"stringIndexType":"Utf16CodeUnit"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db', - 'x-envoy-upstream-service-time', - '328', - 'apim-request-id', - '2f58ca3e-f434-4295-9783-594c2404ff21', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:00Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '525e2f58-a16c-4fea-8026-3b6097ce8a32', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:00Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '4144b74e-e194-4825-b9f2-d4b887aea8f1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '37', - 'apim-request-id', - '5f79b67c-2295-43ca-ad21-11e388455e44', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '46a0abc2-1c44-4b9f-ad14-1e8d83d22d30', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - '742b098e-1b6e-4d2a-bf32-a457f5d4be84', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'fad376a6-e048-450f-8be6-bf8f90dc2940', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '39', - 'apim-request-id', - '81e665c7-3c58-4c76-9f3e-1ebf8cc66b68', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'f938417c-6e0a-44f7-bf26-f8371481088d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '05fd2778-ee91-473f-9d50-5cd6017b7c9e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '3a83faf9-cc59-491c-9588-341004d4f0fd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '560ab5ec-ca34-4629-a0b9-3f1dd103e736', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '29', - 'apim-request-id', - '313dbaa2-c127-43e2-ac2f-2655f67f7303', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:01Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - '7bb8b8b1-0520-4a2e-9b5d-4f35b2a338c5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:24Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:24.3167147Z","state":"succeeded","results":{"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '174', - 'apim-request-id', - 'd0f89027-86a0-46d3-838a-4a20e7987768', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/d0101a34-918e-4042-9d40-0565690213db') - .query(true) - .reply(200, {"jobId":"d0101a34-918e-4042-9d40-0565690213db","lastUpdateDateTime":"2021-10-23T00:38:24Z","createdDateTime":"2021-10-23T00:38:00Z","expirationDateTime":"2021-10-24T00:38:00Z","status":"succeeded","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:24.3167147Z","state":"succeeded","results":{"documents":[{"id":"0","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":25,"text":"The food was unacceptable","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":13,"length":12,"text":"unacceptable","isNegated":false}]}],"warnings":[]},{"id":"1","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":25,"text":"The rooms were beautiful.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":9,"text":"beautiful","isNegated":false}]},{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":26,"length":26,"text":"The AC was good and quiet.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":37,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":46,"length":5,"text":"quiet","isNegated":false}]}],"warnings":[]},{"id":"2","sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"neutral":0,"negative":0.99},"offset":0,"length":50,"text":"The breakfast was good, but the toilet was smelly.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":18,"length":4,"text":"good","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":43,"length":6,"text":"smelly","isNegated":false}]}],"warnings":[]},{"id":"3","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":71,"text":"Loved this hotel - good breakfast - nice shuttle service - clean rooms.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":19,"length":4,"text":"good","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":36,"length":4,"text":"nice","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":5,"text":"loved","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":59,"length":5,"text":"clean","isNegated":false}]}],"warnings":[]},{"id":"4","sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":0},"offset":0,"length":56,"text":"I had a great unobstructed view of the Microsoft campus.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":8,"length":5,"text":"great","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":0.93,"negative":0.07},"offset":14,"length":12,"text":"unobstructed","isNegated":false}]}],"warnings":[]},{"id":"5","sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"offset":0,"length":75,"text":"Nice rooms but bathrooms were old and the toilet was dirty when we arrived.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":0,"length":4,"text":"nice","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":30,"length":3,"text":"old","isNegated":false},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":53,"length":5,"text":"dirty","isNegated":false}]}],"warnings":[]},{"id":"6","sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"sentences":[{"sentiment":"neutral","confidenceScores":{"positive":0.03,"neutral":0.63,"negative":0.34},"offset":0,"length":19,"text":"The toilet smelled.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '126', - 'apim-request-id', - 'fae993e2-8a07-4838-877a-b72dcb9918a5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:25 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json new file mode 100644 index 000000000000..9d6ace278d2b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json @@ -0,0 +1,1544 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "749", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000124-0000000000000248-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2b5ab0d6-3929-4025-bc5c-eb42a908ff15" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "The food was unacceptable", + "language": "en" + }, + { + "id": "1", + "text": "The rooms were beautiful. The AC was good and quiet.", + "language": "en" + }, + { + "id": "2", + "text": "The breakfast was good, but the toilet was smelly.", + "language": "en" + }, + { + "id": "3", + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "language": "en" + }, + { + "id": "4", + "text": "I had a great unobstructed view of the Microsoft campus.", + "language": "en" + }, + { + "id": "5", + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "language": "en" + }, + { + "id": "6", + "text": "The toilet smelled.", + "language": "en" + } + ] + }, + "tasks": { + "sentimentAnalysisTasks": [ + { + "parameters": { + "opinionMining": true, + "stringIndexType": "Utf16CodeUnit" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2d00c2f5-590c-40ad-947e-67ecaf924510", + "Date": "Fri, 18 Feb 2022 19:00:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a36e85d6-3426-46ce-9795-ee0f67a936fb", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "238" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a36e85d6-3426-46ce-9795-ee0f67a936fb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000125-0000000000000250-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1aed2b0b-0f41-41cd-88a7-53d834f610e6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a10799cb-1e4f-43e2-8f04-7b5e2fbdcaca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "jobId": "a36e85d6-3426-46ce-9795-ee0f67a936fb", + "lastUpdateDateTime": "2022-02-18T19:00:26Z", + "createdDateTime": "2022-02-18T19:00:26Z", + "expirationDateTime": "2022-02-19T19:00:26Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a36e85d6-3426-46ce-9795-ee0f67a936fb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000126-0000000000000252-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "939faf36-e7be-45cf-b7b8-200ac8100257" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e6a2fad-46b7-4085-bd99-41af98a2e68a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "a36e85d6-3426-46ce-9795-ee0f67a936fb", + "lastUpdateDateTime": "2022-02-18T19:00:26Z", + "createdDateTime": "2022-02-18T19:00:26Z", + "expirationDateTime": "2022-02-19T19:00:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a36e85d6-3426-46ce-9795-ee0f67a936fb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000127-0000000000000254-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8fb13faf-69a6-4f58-a3e1-2e68ffadd588" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a0f4fc3a-e9c6-4524-8fee-5b96725d34e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a36e85d6-3426-46ce-9795-ee0f67a936fb", + "lastUpdateDateTime": "2022-02-18T19:00:27Z", + "createdDateTime": "2022-02-18T19:00:26Z", + "expirationDateTime": "2022-02-19T19:00:26Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a36e85d6-3426-46ce-9795-ee0f67a936fb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000128-0000000000000256-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f8543ae5-f2cd-4fb3-afe2-d3d789b7ff6b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42e103af-6ff3-4608-bb84-adad2f398720", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "168" + }, + "ResponseBody": { + "jobId": "a36e85d6-3426-46ce-9795-ee0f67a936fb", + "lastUpdateDateTime": "2022-02-18T19:00:30Z", + "createdDateTime": "2022-02-18T19:00:26Z", + "expirationDateTime": "2022-02-19T19:00:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:30.5914711Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/a36e85d6-3426-46ce-9795-ee0f67a936fb?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000129-0000000000000258-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e19d4695-0470-4129-8c23-ab4fb4387ad0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19e947ca-9953-4e4e-b11b-45a3855d4fd2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "116" + }, + "ResponseBody": { + "jobId": "a36e85d6-3426-46ce-9795-ee0f67a936fb", + "lastUpdateDateTime": "2022-02-18T19:00:30Z", + "createdDateTime": "2022-02-18T19:00:26Z", + "expirationDateTime": "2022-02-19T19:00:26Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "sentimentAnalysisTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:30.5914711Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 25, + "text": "The food was unacceptable", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 4, + "length": 4, + "text": "food", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/0/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 13, + "length": 12, + "text": "unacceptable", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "1", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 25, + "text": "The rooms were beautiful.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 15, + "length": 9, + "text": "beautiful", + "isNegated": false + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 26, + "length": 26, + "text": "The AC was good and quiet.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 30, + "length": 2, + "text": "AC", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/1/sentences/1/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 37, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 46, + "length": 5, + "text": "quiet", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "2", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "neutral": 0.0, + "negative": 0.99 + }, + "offset": 0, + "length": 50, + "text": "The breakfast was good, but the toilet was smelly.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 4, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 32, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/2/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 18, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 43, + "length": 6, + "text": "smelly", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "3", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 71, + "text": "Loved this hotel - good breakfast - nice shuttle service - clean rooms.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 11, + "length": 5, + "text": "hotel", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 24, + "length": 9, + "text": "breakfast", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 41, + "length": 15, + "text": "shuttle service", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 65, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/1" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/3" + }, + { + "relationType": "assessment", + "ref": "#/documents/3/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 19, + "length": 4, + "text": "good", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 36, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 5, + "text": "loved", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 59, + "length": 5, + "text": "clean", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "4", + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "sentences": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "neutral": 0.0, + "negative": 0.0 + }, + "offset": 0, + "length": 56, + "text": "I had a great unobstructed view of the Microsoft campus.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.97, + "negative": 0.03 + }, + "offset": 27, + "length": 4, + "text": "view", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/0" + }, + { + "relationType": "assessment", + "ref": "#/documents/4/sentences/0/assessments/1" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 8, + "length": 5, + "text": "great", + "isNegated": false + }, + { + "sentiment": "positive", + "confidenceScores": { + "positive": 0.93, + "negative": 0.07 + }, + "offset": 14, + "length": 12, + "text": "unobstructed", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "5", + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "sentences": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "neutral": 0.0, + "negative": 1.0 + }, + "offset": 0, + "length": 75, + "text": "Nice rooms but bathrooms were old and the toilet was dirty when we arrived.", + "targets": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 5, + "length": 5, + "text": "rooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/0" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 15, + "length": 9, + "text": "bathrooms", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/1" + } + ] + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 42, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/5/sentences/0/assessments/2" + } + ] + } + ], + "assessments": [ + { + "sentiment": "positive", + "confidenceScores": { + "positive": 1.0, + "negative": 0.0 + }, + "offset": 0, + "length": 4, + "text": "nice", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 30, + "length": 3, + "text": "old", + "isNegated": false + }, + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.0, + "negative": 1.0 + }, + "offset": 53, + "length": 5, + "text": "dirty", + "isNegated": false + } + ] + } + ], + "warnings": [] + }, + { + "id": "6", + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "sentences": [ + { + "sentiment": "neutral", + "confidenceScores": { + "positive": 0.03, + "neutral": 0.63, + "negative": 0.34 + }, + "offset": 0, + "length": 19, + "text": "The toilet smelled.", + "targets": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 4, + "length": 6, + "text": "toilet", + "relations": [ + { + "relationType": "assessment", + "ref": "#/documents/6/sentences/0/assessments/0" + } + ] + } + ], + "assessments": [ + { + "sentiment": "negative", + "confidenceScores": { + "positive": 0.01, + "negative": 0.99 + }, + "offset": 11, + "length": 7, + "text": "smelled", + "isNegated": false + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js deleted file mode 100644 index 1a4fec9de3a6..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js +++ /dev/null @@ -1,184 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ddb31afd5bdb8c006a752c2060317d17"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"The restaurant had really good food. I recommend you try it.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e', - 'x-envoy-upstream-service-time', - '415', - 'apim-request-id', - 'b83e240a-ae9c-4029-a4fd-c8aa84d8dee8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:26Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '1a01ae68-61f6-4a5f-8da9-979a20acc5ba', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:26Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '69', - 'apim-request-id', - '31f99280-373c-4736-afb3-fb6348467e82', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:26Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'cc869b23-1cd1-4fae-b57f-d0e779924629', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:27 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:26Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '29ff6dec-4e8b-4937-ab4e-99c637ff2342', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:29 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:32Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'b4b11459-f2b3-4b2b-ab38-bbab11f0e8cd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:34Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:34.2548765Z","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:34.4591533Z","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '194', - 'apim-request-id', - '41ce52e2-8b47-43e3-87fe-f5030a2e1677', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:35Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:35.0455016Z","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:34.2548765Z","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:34.4591533Z","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '239', - 'apim-request-id', - '9f60d77b-7c2b-4349-b3b4-07285596493f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/05bb1c94-c928-4e10-8100-e561a013db4e') - .query(true) - .reply(200, {"jobId":"05bb1c94-c928-4e10-8100-e561a013db4e","lastUpdateDateTime":"2021-10-23T00:38:35Z","createdDateTime":"2021-10-23T00:38:25Z","expirationDateTime":"2021-10-24T00:38:25Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:35.0455016Z","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:34.2548765Z","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:38:34.4591533Z","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","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"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '205', - 'apim-request-id', - '8e49bd94-8507-4093-a59b-730e01a7c4c9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:38:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json new file mode 100644 index 000000000000..ef395a910eca --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json @@ -0,0 +1,576 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "557", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000131-0000000000000262-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8914b60b-d615-4556-b25f-7d3fa303b077" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "english" + }, + { + "id": "3", + "text": "The restaurant had really good food. I recommend you try it.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "529b2828-fe34-43c5-8bdf-061fd9b4e939", + "Date": "Fri, 18 Feb 2022 19:00:32 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3356b5d-d770-4f4d-9ccd-5f0712bd0b75", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "265" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3356b5d-d770-4f4d-9ccd-5f0712bd0b75?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000132-0000000000000264-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4ff98cdd-04ba-409b-8c60-bc042e1c3253" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc175a8f-7bc7-4380-bf10-ebb7ac19cd68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "7" + }, + "ResponseBody": { + "jobId": "b3356b5d-d770-4f4d-9ccd-5f0712bd0b75", + "lastUpdateDateTime": "2022-02-18T19:00:33Z", + "createdDateTime": "2022-02-18T19:00:32Z", + "expirationDateTime": "2022-02-19T19:00:32Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3356b5d-d770-4f4d-9ccd-5f0712bd0b75?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000133-0000000000000266-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c239ae54-33bd-43cd-b9d2-a00960bb82d0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "393828e3-bf0b-41a1-ba62-eab3bd8a5636", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "8" + }, + "ResponseBody": { + "jobId": "b3356b5d-d770-4f4d-9ccd-5f0712bd0b75", + "lastUpdateDateTime": "2022-02-18T19:00:33Z", + "createdDateTime": "2022-02-18T19:00:32Z", + "expirationDateTime": "2022-02-19T19:00:32Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3356b5d-d770-4f4d-9ccd-5f0712bd0b75?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000134-0000000000000268-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "984ffc5c-81be-4232-b3b1-23477222d482" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1073e1b3-4bab-401f-9078-c652eff90d93", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "jobId": "b3356b5d-d770-4f4d-9ccd-5f0712bd0b75", + "lastUpdateDateTime": "2022-02-18T19:00:34Z", + "createdDateTime": "2022-02-18T19:00:32Z", + "expirationDateTime": "2022-02-19T19:00:32Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:34.9480297Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3356b5d-d770-4f4d-9ccd-5f0712bd0b75?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000135-0000000000000270-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "89814d2b-6939-4dc1-b8d5-8dd46d3d72a4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a1864ab4-525e-4e07-9f52-b34c595e1922", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "jobId": "b3356b5d-d770-4f4d-9ccd-5f0712bd0b75", + "lastUpdateDateTime": "2022-02-18T19:00:36Z", + "createdDateTime": "2022-02-18T19:00:32Z", + "expirationDateTime": "2022-02-19T19:00:32Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:36.8123928Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:36.5994235Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:34.9480297Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b3356b5d-d770-4f4d-9ccd-5f0712bd0b75?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000136-0000000000000272-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ab0470b8-0bc8-462d-a343-3c5cdbd11dc1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b62944da-b6cc-4508-9237-342b871453f7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:00:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "329" + }, + "ResponseBody": { + "jobId": "b3356b5d-d770-4f4d-9ccd-5f0712bd0b75", + "lastUpdateDateTime": "2022-02-18T19:00:36Z", + "createdDateTime": "2022-02-18T19:00:32Z", + "expirationDateTime": "2022-02-19T19:00:32Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:36.8123928Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.97 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:36.5994235Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "The restaurant had really good food. I recommend you try it.", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:00:34.9480297Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "3", + "keyPhrases": [ + "good food", + "restaurant" + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "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" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.js deleted file mode 100644 index 977ee93ad9d7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.js +++ /dev/null @@ -1,184 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "5eb1f48c0b2ff864b7682bef634467f1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"},"taskName":"action1"},{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"},"taskName":"action2"}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8', - 'x-envoy-upstream-service-time', - '170', - 'apim-request-id', - '8ea77591-e2c2-4dba-93e3-2692e359b96d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:46:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:46:53Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '31', - 'apim-request-id', - '8da5cba7-bdcf-47ac-ae43-e9f472e2b8d4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:46:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:46:53Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '27', - 'apim-request-id', - 'cabc24a9-9ba5-49b5-85fb-214a6aab6a23', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:46:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:46:53Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2ff34ab7-8312-4799-a87c-8c2b27e0cb4f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:46:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:46:53Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '5db68b86-fa84-4f27-9821-0b7621c4ed05', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:46:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:46:53Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f731bd0e-9e5f-4f89-910d-367f105617d7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:46:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:47:01Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:01.4399609Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '56', - 'apim-request-id', - '0c60e344-8f99-448d-ad8b-83b277e463f1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:47:01Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:01.4399609Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}},{"lastUpdateDateTime":"2021-10-28T02:47:01.8640821Z","taskName":"action2","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '72', - 'apim-request-id', - '24905b2b-9769-4128-a4f2-0a532859b201', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/7e900bc7-2c19-432c-b23f-34b2cbb23dd8') - .query(true) - .reply(200, {"jobId":"7e900bc7-2c19-432c-b23f-34b2cbb23dd8","lastUpdateDateTime":"2021-10-28T02:47:01Z","createdDateTime":"2021-10-28T02:46:53Z","expirationDateTime":"2021-10-29T02:46:53Z","status":"succeeded","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-28T02:47:01.4399609Z","taskName":"action1","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}},{"lastUpdateDateTime":"2021-10-28T02:47:01.8640821Z","taskName":"action2","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '79', - 'apim-request-id', - '2654baa7-a5ab-43ed-a0b0-8d902dafa618', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Thu, 28 Oct 2021 02:47:03 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json new file mode 100644 index 000000000000..753eca6d6e94 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_unique_multiple_actions_per_type_are_allowed.json @@ -0,0 +1,454 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "310", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000228-0000000000000456-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7dd971a8-7a79-498e-9261-af995f1dc186" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action1" + }, + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "taskName": "action2" + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "fc47acc4-3249-4447-aefa-713135ab4be2", + "Date": "Fri, 18 Feb 2022 19:02:25 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "218" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000229-0000000000000458-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7ea9cc0a-6fea-43f9-a7a5-919ba78ed1c1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9262b5ec-f51b-44c7-8956-0cd37a2661ee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:25Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000230-0000000000000460-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8e8de567-502d-4bc3-969d-fc6978a2d19a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8be8e34d-fa9f-47d5-8e0f-189966ecabe6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:25Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 2, + "total": 2 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000231-0000000000000462-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c543ee1a-c628-4608-9f38-a3d7d0d3e01f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "201b86b4-d278-4fd1-9983-0d9ad9ad0635", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "269" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:27Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:27.0132374Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000232-0000000000000464-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "696f970e-ba32-471b-b21b-e1c531ccede3" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7292c3e2-74e2-4183-bda2-f2df822400b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:27Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:27.0132374Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000233-0000000000000466-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b6dec938-9c7c-40cd-b3e9-04ca7491d833" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b10c716-c1fe-4dbd-86f3-2b494798853b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "28" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:27Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 1, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:27.0132374Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000234-0000000000000468-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8d63276f-8aab-44fe-a21a-8e03769b38c2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01366ac0-43b6-45b5-82b1-90b0111bf4b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:33Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:27.0132374Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:02:33.1286595Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/cb765e76-b2c9-4086-b405-520d641b3f86?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000235-0000000000000470-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0510f157-7cbc-4ff8-9a7c-28c29cd3fe4a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4fddcf22-e5f2-4570-828a-8af798641099", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "cb765e76-b2c9-4086-b405-520d641b3f86", + "lastUpdateDateTime": "2022-02-18T19:02:33Z", + "createdDateTime": "2022-02-18T19:02:25Z", + "expirationDateTime": "2022-02-19T19:02:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 0, + "total": 2, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:02:27.0132374Z", + "taskName": "action1", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + }, + { + "lastUpdateDateTime": "2022-02-18T19:02:33.1286595Z", + "taskName": "action2", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js deleted file mode 100644 index fcac85dee0de..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js +++ /dev/null @@ -1,184 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cadb222b1add133df1ecfeacb4026b4b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03', - 'x-envoy-upstream-service-time', - '437', - 'apim-request-id', - '66e6538e-ac53-4378-abe2-ac5f90156fed', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:15Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'cc4a3b1e-4c38-465c-ac17-a88adaafc7de', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:15Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '7e8c99a4-84f1-4184-b608-49b50976f15b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:15Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '26713734-4589-4068-a0a8-7af9c0eb5148', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:15Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '19', - 'apim-request-id', - '7f1ed91a-e2b1-4678-9143-327b19dfb3cb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:21Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '8ca82831-ece6-43b6-912f-49b4e6d75428', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:23Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"running","errors":[],"tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:23.1543074Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.94}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '77', - 'apim-request-id', - '17551a01-f66c-495a-90ad-60fe09798e52', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:24Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:23.1543074Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.94}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:24.3895266Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:24.478907Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '235', - 'apim-request-id', - '9ddb0680-c53f-4369-9cd1-043bec35b9e7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/2ddc7f31-bce3-466a-ad33-a1176fb93d03') - .query(true) - .reply(200, {"jobId":"2ddc7f31-bce3-466a-ad33-a1176fb93d03","lastUpdateDateTime":"2021-10-23T00:40:24Z","createdDateTime":"2021-10-23T00:40:14Z","expirationDateTime":"2021-10-24T00:40:14Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:23.1543074Z","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.94}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:24.3895266Z","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:40:24.478907Z","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '243', - 'apim-request-id', - 'db4a68a1-62a6-4abd-b931-f8ec8b987653', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:40:26 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json new file mode 100644 index 000000000000..2dc73f8d2170 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json @@ -0,0 +1,521 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "460", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000178-0000000000000356-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7b4dae77-ac66-44c3-bf4e-33e6a1d0ed39" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "I will go to the park." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6db3f985-cacf-4605-b3a0-2ff295f2d12d", + "Date": "Fri, 18 Feb 2022 19:01:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/599c8183-6120-41ef-9464-a3641cd7f4c3", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/599c8183-6120-41ef-9464-a3641cd7f4c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000179-0000000000000358-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6a59a7ed-bf85-47a6-8e3f-5e0abbc094a6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aaf78050-a4f0-4a3b-8dad-e6dc8368e707", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "599c8183-6120-41ef-9464-a3641cd7f4c3", + "lastUpdateDateTime": "2022-02-18T19:01:26Z", + "createdDateTime": "2022-02-18T19:01:25Z", + "expirationDateTime": "2022-02-19T19:01:25Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/599c8183-6120-41ef-9464-a3641cd7f4c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000180-0000000000000360-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7ece8476-e029-4a64-adea-905e7cba7234" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "04c6b809-cba6-42e2-9b57-de974c005939", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "599c8183-6120-41ef-9464-a3641cd7f4c3", + "lastUpdateDateTime": "2022-02-18T19:01:26Z", + "createdDateTime": "2022-02-18T19:01:25Z", + "expirationDateTime": "2022-02-19T19:01:25Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/599c8183-6120-41ef-9464-a3641cd7f4c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000181-0000000000000362-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fbcfd207-9fde-4a3a-ae95-a0198a786012" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6a84ec30-bdd0-475f-9446-7b554abe19b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" + }, + "ResponseBody": { + "jobId": "599c8183-6120-41ef-9464-a3641cd7f4c3", + "lastUpdateDateTime": "2022-02-18T19:01:28Z", + "createdDateTime": "2022-02-18T19:01:25Z", + "expirationDateTime": "2022-02-19T19:01:25Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:28.1779654Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/599c8183-6120-41ef-9464-a3641cd7f4c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000182-0000000000000364-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "aaa7256e-6ba0-4c16-927c-1606acfb84dd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6822e532-f860-4a5b-9927-e973a162d908", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "276" + }, + "ResponseBody": { + "jobId": "599c8183-6120-41ef-9464-a3641cd7f4c3", + "lastUpdateDateTime": "2022-02-18T19:01:29Z", + "createdDateTime": "2022-02-18T19:01:25Z", + "expirationDateTime": "2022-02-19T19:01:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:28.1779654Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:29.0549592Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:29.4120285Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/599c8183-6120-41ef-9464-a3641cd7f4c3?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000183-0000000000000366-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8b1c8e9e-c1f5-405a-8b91-66ab45538c3b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f6c62e6-22cf-43d8-a72b-dc232e1187eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": { + "jobId": "599c8183-6120-41ef-9464-a3641cd7f4c3", + "lastUpdateDateTime": "2022-02-18T19:01:29Z", + "createdDateTime": "2022-02-18T19:01:25Z", + "expirationDateTime": "2022-02-19T19:01:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:28.1779654Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "park", + "category": "Location", + "offset": 17, + "length": 4, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Espa\u00F1ol", + "category": "Skill", + "offset": 31, + "length": 7, + "confidenceScore": 0.94 + } + ], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:29.0549592Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "I will go to the park.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "Este es un document escrito en Espa\u00F1ol.", + "id": "2", + "entities": [], + "warnings": [] + }, + { + "redactedText": "\u732B\u306F\u5E78\u305B", + "id": "3", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:29.4120285Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "1", + "keyPhrases": [ + "park" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "Espa\u00F1ol", + "document" + ], + "warnings": [] + }, + { + "id": "3", + "keyPhrases": [ + "\u306F\u5E78\u305B" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js deleted file mode 100644 index 5596f1cb02f3..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js +++ /dev/null @@ -1,284 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d2c34eac441d97eba273055b1b130792"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2', - 'x-envoy-upstream-service-time', - '363', - 'apim-request-id', - 'd4fd0988-e447-4b74-b6a8-7a830ba81e19', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:20Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '760223c3-f3d5-4f2d-ac18-4108163e8cd5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:20Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '15', - 'apim-request-id', - '35d749ab-67ec-4217-95c4-fb79c60735ee', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:20Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '47', - 'apim-request-id', - 'abe813fb-7e5a-4afb-90d4-e7a38ce5389d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:20Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '02705f6d-be4a-4d90-98ec-0722965af344', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:24 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:26Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'f64152f2-c843-4b8c-9dd6-094ba76e3363', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:27Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '170', - 'apim-request-id', - 'e599aef8-404e-411a-9c92-a74602dcce14', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:27Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '184', - 'apim-request-id', - '23eaa42e-766e-41a3-842e-f7cf4484d960', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:27Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '217', - 'apim-request-id', - 'a30e662b-5e9f-4752-b1b6-3d77e2ec7d86', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:27Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '142', - 'apim-request-id', - '81419da7-25fa-4eaf-a129-a61d12604bc2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:27Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '151', - 'apim-request-id', - '5b98bf26-1a57-4e01-b81a-5d54e4e72a92', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:27Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '154', - 'apim-request-id', - 'ac6ab48c-ffc1-43e3-ae5e-35bf6c12828e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:40Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:40.0960974Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '393', - 'apim-request-id', - '7723ff73-7c55-4982-ba96-33eb1a1cc1e4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/bb00cb56-1b56-445e-a5da-42ef620c43e2') - .query(true) - .reply(200, {"jobId":"bb00cb56-1b56-445e-a5da-42ef620c43e2","lastUpdateDateTime":"2021-10-23T00:39:40Z","createdDateTime":"2021-10-23T00:39:19Z","expirationDateTime":"2021-10-24T00:39:19Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.9549324Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:27.5885573Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:40.0960974Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '211', - 'apim-request-id', - 'f02fee19-2c27-49a9-9a0d-f8ca8d78e100', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:41 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json new file mode 100644 index 000000000000..99e79365ebb5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json @@ -0,0 +1,819 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000157-0000000000000314-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "255dc705-14ee-4bc3-a2d0-0b7946521985" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "7df891ad-f130-41bc-8df3-0d49ced2de8c", + "Date": "Fri, 18 Feb 2022 19:01:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "181" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000158-0000000000000316-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b5185a2e-577a-4619-b88b-f5b652c77a64" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f8f92bd-6629-454a-b960-30032083aa77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:01Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "notStarted", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000159-0000000000000318-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8e6f5dce-ccd4-40e0-952d-1e874e2b6aaf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c7a078d-630c-49a5-b912-2453cb23a0ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:01Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000160-0000000000000320-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "486ce4ec-419e-407b-a264-db13d1cc1b5e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "44d1b740-29ed-43de-aceb-b01be9309dfb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "16" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:01Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000161-0000000000000322-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "abb6267c-2ec4-4479-95c1-55eda2b2c668" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6c453be-fd27-446c-9a2e-33a3da7698d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:04Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:04.4117035Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:03.8840074Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000162-0000000000000324-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ea2297dc-f08a-442a-b1d9-71c0f72cf488" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e3c4c826-b6c3-4dd4-bd17-dd979b780cff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:07Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:04.4117035Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:03.8840074Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000163-0000000000000326-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6c27aa19-f738-4391-a0e8-274c75e7a793" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e51a6260-781b-49f9-8e4b-62eb704f7adb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:07Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:04.4117035Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:03.8840074Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000164-0000000000000328-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "36cb4dca-e848-4054-9dcd-fc98b472bf39" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cea76e36-82b6-462f-a82c-9da5184a2412", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "425" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:10Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:04.4117035Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:03.8840074Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:10.6769271Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000165-0000000000000330-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e73e6c69-0e1d-4f73-97be-2fb4fb6ec708" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27267c5a-911d-4598-84e9-077e47775b72", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "191" + }, + "ResponseBody": { + "jobId": "1a33c0b1-fbe3-4bbe-bbbf-d2b2ed0f5ecf", + "lastUpdateDateTime": "2022-02-18T19:01:10Z", + "createdDateTime": "2022-02-18T19:01:01Z", + "expirationDateTime": "2022-02-19T19:01:01Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:04.4117035Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:03.8840074Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:10.6769271Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js deleted file mode 100644 index 1ffa1639e42b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js +++ /dev/null @@ -1,224 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e78b89bde1ca087eb5fb288827df0898"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985', - 'x-envoy-upstream-service-time', - '502', - 'apim-request-id', - '3ae65e4d-b581-479b-9569-b041673c1af6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:43Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '44', - 'apim-request-id', - '963b661b-02dc-4453-86ba-4e3b284dc44a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:43Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"notStarted","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '22', - 'apim-request-id', - '8f09f879-22c8-448f-bc3d-df3220c3a3fa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:43Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'bfec7dce-02f6-4d56-8721-278852378365', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:43Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'e5db2b19-dffc-4f25-b450-7ebfb50d0840', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:49Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"running","errors":[],"tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '547310f8-d159-4969-b5d7-60946dd8a5a6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:50Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.5474623Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.9685061Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '191', - 'apim-request-id', - 'a6f2b455-f3a1-42fa-b6bd-743e2dab5e7c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:50Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.5474623Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.9685061Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '164', - 'apim-request-id', - 'c6960ad3-fbb6-4877-a93b-068693e508ce', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:50Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"running","errors":[],"tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.5474623Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.9685061Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '189', - 'apim-request-id', - '1fb17004-c384-4e02-ae40-c290a149e69b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:57Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:57.7718678Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.5474623Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.9685061Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '275', - 'apim-request-id', - '88cd6a3c-97bb-4319-8893-9cba29012f3e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/analyze/jobs/b0aa8f9c-ffc8-4dfb-841b-660a10a8f985') - .query(true) - .reply(200, {"jobId":"b0aa8f9c-ffc8-4dfb-841b-660a10a8f985","lastUpdateDateTime":"2021-10-23T00:39:57Z","createdDateTime":"2021-10-23T00:39:42Z","expirationDateTime":"2021-10-24T00:39:42Z","status":"succeeded","errors":[],"tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:57.7718678Z","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.5474623Z","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-10-23T00:39:50.9685061Z","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '239', - 'apim-request-id', - '93a400a0-3c21-4445-9f3b-a5589886a7c7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:39:57 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json new file mode 100644 index 000000000000..4a1f6a2802be --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json @@ -0,0 +1,513 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "569", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000166-0000000000000332-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "871eaa7a-b3ad-4209-b962-f9ae435d1671" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "91daa010-73ad-432c-b591-f2c5c36b10f5", + "Date": "Fri, 18 Feb 2022 19:01:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/da9dd4d7-eab5-4111-99cc-44cd1a532105", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "266" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/da9dd4d7-eab5-4111-99cc-44cd1a532105?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000167-0000000000000334-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "91e2f932-7cce-4308-9fd4-33e1e48cdc59" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3dcfacce-32a4-4941-be88-ecadaf09a761", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "da9dd4d7-eab5-4111-99cc-44cd1a532105", + "lastUpdateDateTime": "2022-02-18T19:01:14Z", + "createdDateTime": "2022-02-18T19:01:13Z", + "expirationDateTime": "2022-02-19T19:01:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/da9dd4d7-eab5-4111-99cc-44cd1a532105?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000168-0000000000000336-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "aebc979d-a9b4-499e-a6b8-2c4ecd8dcd9f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf77c2ee-e179-45cc-9437-78cd05fc3717", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "da9dd4d7-eab5-4111-99cc-44cd1a532105", + "lastUpdateDateTime": "2022-02-18T19:01:14Z", + "createdDateTime": "2022-02-18T19:01:13Z", + "expirationDateTime": "2022-02-19T19:01:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/da9dd4d7-eab5-4111-99cc-44cd1a532105?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000169-0000000000000338-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4e226b50-7940-4d0e-9e06-240eab6f533e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e4476a21-c72e-4321-b4a9-3a4f64d65d99", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "da9dd4d7-eab5-4111-99cc-44cd1a532105", + "lastUpdateDateTime": "2022-02-18T19:01:16Z", + "createdDateTime": "2022-02-18T19:01:13Z", + "expirationDateTime": "2022-02-19T19:01:13Z", + "status": "running", + "errors": [], + "tasks": { + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:16.0237741Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/da9dd4d7-eab5-4111-99cc-44cd1a532105?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000170-0000000000000340-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e562fb1c-73e1-4fb8-a133-e6b8ce546489" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fee2e13d-a871-4abc-90b6-26d331b20a2d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "jobId": "da9dd4d7-eab5-4111-99cc-44cd1a532105", + "lastUpdateDateTime": "2022-02-18T19:01:17Z", + "createdDateTime": "2022-02-18T19:01:13Z", + "expirationDateTime": "2022-02-19T19:01:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:16.6338836Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:16.0237741Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:17.0556541Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/analyze/jobs/da9dd4d7-eab5-4111-99cc-44cd1a532105?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000171-0000000000000342-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8c309993-900c-4b3c-bddc-1837aaac1ff5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f50717db-e666-4ffe-a876-adfbeaebacfe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:01:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": { + "jobId": "da9dd4d7-eab5-4111-99cc-44cd1a532105", + "lastUpdateDateTime": "2022-02-18T19:01:17Z", + "createdDateTime": "2022-02-18T19:01:13Z", + "expirationDateTime": "2022-02-19T19:01:13Z", + "status": "succeeded", + "errors": [], + "tasks": { + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:16.6338836Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "text": "hotel", + "category": "Location", + "offset": 19, + "length": 5, + "confidenceScore": 0.99 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "restaurant", + "category": "Location", + "subcategory": "Structural", + "offset": 4, + "length": 10, + "confidenceScore": 0.96 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:16.0237741Z", + "state": "succeeded", + "results": { + "documents": [ + { + "redactedText": "This was the best day of my life.", + "id": "0", + "entities": [], + "warnings": [] + }, + { + "redactedText": "I did not like the hotel we stayed at. It was too expensive.", + "id": "1", + "entities": [], + "warnings": [] + }, + { + "redactedText": "The restaurant was not as good as I hoped.", + "id": "2", + "entities": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-01-15" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "lastUpdateDateTime": "2022-02-18T19:01:17.0556541Z", + "state": "succeeded", + "results": { + "documents": [ + { + "id": "0", + "keyPhrases": [ + "best day", + "life" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "hotel" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "restaurant" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-06-01" + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.js deleted file mode 100644 index 9edc24587074..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "312581be23da2744639956ae58b5b5f3"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":"english"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/a27f1804-8f8b-48f3-a204-ed2823e9b3ff', - 'x-envoy-upstream-service-time', - '189', - 'apim-request-id', - '500a69bf-1a28-4105-8810-6c5c678352d4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/a27f1804-8f8b-48f3-a204-ed2823e9b3ff') - .query(true) - .reply(200, {"jobId":"a27f1804-8f8b-48f3-a204-ed2823e9b3ff","lastUpdateDateTime":"2021-11-29T22:47:02Z","createdDateTime":"2021-11-29T22:47:02Z","expirationDateTime":"2021-11-30T22:47:02Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '5c090303-5654-489a-abc1-f3523789fb63', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/a27f1804-8f8b-48f3-a204-ed2823e9b3ff') - .query(true) - .reply(200, {"jobId":"a27f1804-8f8b-48f3-a204-ed2823e9b3ff","lastUpdateDateTime":"2021-11-29T22:47:02Z","createdDateTime":"2021-11-29T22:47:02Z","expirationDateTime":"2021-11-30T22:47:02Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '17', - 'apim-request-id', - '805938f1-1992-48f3-9076-53ed2675b32b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/a27f1804-8f8b-48f3-a204-ed2823e9b3ff') - .query(true) - .reply(200, {"jobId":"a27f1804-8f8b-48f3-a204-ed2823e9b3ff","lastUpdateDateTime":"2021-11-29T22:47:03Z","createdDateTime":"2021-11-29T22:47:02Z","expirationDateTime":"2021-11-30T22:47:02Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '222', - 'apim-request-id', - 'c3322726-ba90-4872-9b71-568552029466', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/a27f1804-8f8b-48f3-a204-ed2823e9b3ff') - .query(true) - .reply(200, {"jobId":"a27f1804-8f8b-48f3-a204-ed2823e9b3ff","lastUpdateDateTime":"2021-11-29T22:47:03Z","createdDateTime":"2021-11-29T22:47:02Z","expirationDateTime":"2021-11-30T22:47:02Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '207', - 'apim-request-id', - 'f3a807d3-6cdc-471f-b0f3-767d5d760c41', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:05 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json new file mode 100644 index 000000000000..488e9b23dcd6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json @@ -0,0 +1,196 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "116", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000311-0000000000000622-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0b3e1168-dd0a-4c04-bd50-9a9faaf135a3" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "english" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a38064f5-c353-46f8-bdb8-b96674782e70", + "Date": "Fri, 18 Feb 2022 19:03:24 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000312-0000000000000624-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "58c2b3f4-51f1-4cb9-9891-1e00d1a7d267" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "51ce968e-3af7-4870-937c-032e08417b6b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "jobId": "7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9", + "lastUpdateDateTime": "2022-02-18T19:03:24Z", + "createdDateTime": "2022-02-18T19:03:24Z", + "expirationDateTime": "2022-02-19T19:03:24Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000313-0000000000000626-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f3f6f8f1-5084-45fd-aaa6-bcfbf657a583" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0fb28448-3ae3-48da-87f3-ed8782e7dbac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "jobId": "7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9", + "lastUpdateDateTime": "2022-02-18T19:03:24Z", + "createdDateTime": "2022-02-18T19:03:24Z", + "expirationDateTime": "2022-02-19T19:03:24Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000314-0000000000000628-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9fa501d3-083b-4c3c-93fd-d27654cba0a5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b069568-3c43-41cb-8b49-1ce632ad5a59", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "jobId": "7e4f60e9-7c6b-4f9f-8f8f-131225de8cb9", + "lastUpdateDateTime": "2022-02-18T19:03:24Z", + "createdDateTime": "2022-02-18T19:03:24Z", + "expirationDateTime": "2022-02-19T19:03:24Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js deleted file mode 100644 index a40c7da67d19..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js +++ /dev/null @@ -1,325 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "0c018911d7b8c915100686d9373b4af8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e', - 'x-envoy-upstream-service-time', - '203', - 'apim-request-id', - 'f2cab5b5-1d7a-4d39-a312-a1b7b30257b5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '24', - 'apim-request-id', - '5090e588-02ed-4683-aa55-2116ef3663b2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'a44a74c1-c973-46d2-943c-77460fe6b8f0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '153', - 'apim-request-id', - 'd1986363-1466-422e-bd7e-109712ae5029', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '7abcc114-1f52-4217-b47a-c304b7607aec', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '2f30d96a-c260-43ab-ab47-a30582251e9d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '657f85d7-ef76-4dd5-a62d-0adb212bbe3d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'ff6e16fb-540f-412a-9e8e-af1547b04e06', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:03Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '75013ddf-2a7d-4879-99f0-7fba60147554', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:16Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '65f4e138-9a46-4f8c-baeb-27fbe6b33a73', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:16Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'bc9314b8-61fe-4a16-909c-5bafe7456853', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:16Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'c033ecbb-3e58-4687-97f4-506957f46dfc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:16Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'ab85adbf-790b-430e-b332-894f3123680a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:16Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - 'a1b3dd57-3525-4016-94ab-beba8835e110', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:27Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '133', - 'apim-request-id', - 'a7ae5b96-6521-4f7c-97ed-2f3a8c3065d4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/60cef572-37cb-4927-8926-fd057d90ab0e') - .query(true) - .reply(200, {"jobId":"60cef572-37cb-4927-8926-fd057d90ab0e","lastUpdateDateTime":"2021-10-23T00:42:27Z","createdDateTime":"2021-10-23T00:42:03Z","expirationDateTime":"2021-10-24T00:42:03Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '140', - 'apim-request-id', - 'd6cd431e-a6d5-402f-8319-c2457198acad', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:28 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json new file mode 100644 index 000000000000..ea5cd75a23bf --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json @@ -0,0 +1,256 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "180", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000256-0000000000000512-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "936a2c0f-5969-432d-a547-23b3852444f5" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "900fd21b-90b4-4dea-bae0-1f822673707e", + "Date": "Fri, 18 Feb 2022 19:02:48 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c88ce135-4c78-43fc-8294-f896c773b41d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "188" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c88ce135-4c78-43fc-8294-f896c773b41d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000257-0000000000000514-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2de2e94b-8815-4be6-bf1b-6d80d45d7c38" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a24d3de5-a544-4daf-9979-0dac1d1de052", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "19" + }, + "ResponseBody": { + "jobId": "c88ce135-4c78-43fc-8294-f896c773b41d", + "lastUpdateDateTime": "2022-02-18T19:02:49Z", + "createdDateTime": "2022-02-18T19:02:48Z", + "expirationDateTime": "2022-02-19T19:02:48Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c88ce135-4c78-43fc-8294-f896c773b41d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000258-0000000000000516-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3d49c861-5906-4413-a807-81663e8d47df" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64827cd2-8240-4f98-9d35-8992717b021f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "c88ce135-4c78-43fc-8294-f896c773b41d", + "lastUpdateDateTime": "2022-02-18T19:02:49Z", + "createdDateTime": "2022-02-18T19:02:48Z", + "expirationDateTime": "2022-02-19T19:02:48Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c88ce135-4c78-43fc-8294-f896c773b41d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000259-0000000000000518-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "53fc572c-7c3e-4a5b-b756-bb58906dd196" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad1a9ed7-6eef-4270-b354-8eacc267acab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "79" + }, + "ResponseBody": { + "jobId": "c88ce135-4c78-43fc-8294-f896c773b41d", + "lastUpdateDateTime": "2022-02-18T19:02:49Z", + "createdDateTime": "2022-02-18T19:02:48Z", + "expirationDateTime": "2022-02-19T19:02:48Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/c88ce135-4c78-43fc-8294-f896c773b41d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000260-0000000000000520-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a0595707-5534-4a0a-bf25-8e637609a073" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27ca0829-8aeb-430e-86e8-56efeefe9476", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "jobId": "c88ce135-4c78-43fc-8294-f896c773b41d", + "lastUpdateDateTime": "2022-02-18T19:02:49Z", + "createdDateTime": "2022-02-18T19:02:48Z", + "expirationDateTime": "2022-02-19T19:02:48Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + }, + { + "id": "3", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.js deleted file mode 100644 index 50e40c9cb71a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1a6e295946f3b658196c905d15b7c5a4"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"3","text":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e574c543-8b63-4f5b-909e-c9080301b4aa', - 'x-envoy-upstream-service-time', - '140', - 'apim-request-id', - '2af1115c-76a2-40b5-a37a-94ee452d72c6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/e574c543-8b63-4f5b-909e-c9080301b4aa') - .query(true) - .reply(200, {"jobId":"e574c543-8b63-4f5b-909e-c9080301b4aa","lastUpdateDateTime":"2021-11-29T22:47:05Z","createdDateTime":"2021-11-29T22:47:05Z","expirationDateTime":"2021-11-30T22:47:05Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'e4f93bc8-59b2-4902-8db3-1853b56e6c9b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/e574c543-8b63-4f5b-909e-c9080301b4aa') - .query(true) - .reply(200, {"jobId":"e574c543-8b63-4f5b-909e-c9080301b4aa","lastUpdateDateTime":"2021-11-29T22:47:05Z","createdDateTime":"2021-11-29T22:47:05Z","expirationDateTime":"2021-11-30T22:47:05Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '19f2bd14-b2dd-4531-a0c4-1d999adc7a86', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/e574c543-8b63-4f5b-909e-c9080301b4aa') - .query(true) - .reply(200, {"jobId":"e574c543-8b63-4f5b-909e-c9080301b4aa","lastUpdateDateTime":"2021-11-29T22:47:05Z","createdDateTime":"2021-11-29T22:47:05Z","expirationDateTime":"2021-11-30T22:47:05Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '0c8076f3-e544-4575-83e4-05e44e6086de', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/e574c543-8b63-4f5b-909e-c9080301b4aa') - .query(true) - .reply(200, {"jobId":"e574c543-8b63-4f5b-909e-c9080301b4aa","lastUpdateDateTime":"2021-11-29T22:47:07Z","createdDateTime":"2021-11-29T22:47:05Z","expirationDateTime":"2021-11-30T22:47:05Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[],"relations":[],"warnings":[{"code":"DocumentTruncated","message":"Document is large and must be split to be processed; relations across splits may not be caught by the model"}]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '131', - 'apim-request-id', - 'b56be346-f186-495b-a169-073634c7b308', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.2/entities/health/jobs/e574c543-8b63-4f5b-909e-c9080301b4aa') - .query(true) - .reply(200, {"jobId":"e574c543-8b63-4f5b-909e-c9080301b4aa","lastUpdateDateTime":"2021-11-29T22:47:07Z","createdDateTime":"2021-11-29T22:47:05Z","expirationDateTime":"2021-11-30T22:47:05Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[],"relations":[],"warnings":[{"code":"DocumentTruncated","message":"Document is large and must be split to be processed; relations across splits may not be caught by the model"}]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '63', - 'apim-request-id', - '8b04c891-de63-4cfb-921f-ab04d9c7c782', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 29 Nov 2021 22:47:09 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json new file mode 100644 index 000000000000..963072507254 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_big_document_causes_a_warning.json @@ -0,0 +1,233 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "5157", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000315-0000000000000630-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e3feb728-75c1-421e-b84d-46304cb85528" + }, + "RequestBody": { + "documents": [ + { + "id": "3", + "text": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "7285dcb7-cfc5-4477-b18a-d39c9e4dfd95", + "Date": "Fri, 18 Feb 2022 19:03:25 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f16adc7-482a-4894-bdd1-cabf0c1eb91f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f16adc7-482a-4894-bdd1-cabf0c1eb91f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000316-0000000000000632-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3cdcc8e2-efe0-4848-b48b-96d428d70337" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8650a760-155b-474e-980b-c9b4f9ecae12", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "1f16adc7-482a-4894-bdd1-cabf0c1eb91f", + "lastUpdateDateTime": "2022-02-18T19:03:25Z", + "createdDateTime": "2022-02-18T19:03:25Z", + "expirationDateTime": "2022-02-19T19:03:25Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f16adc7-482a-4894-bdd1-cabf0c1eb91f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000317-0000000000000634-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ea8f47c6-ad1e-4074-9c06-6833b43f49d7" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b05dc0c6-3ad9-4f08-b371-074cd3b17d4e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "1f16adc7-482a-4894-bdd1-cabf0c1eb91f", + "lastUpdateDateTime": "2022-02-18T19:03:25Z", + "createdDateTime": "2022-02-18T19:03:25Z", + "expirationDateTime": "2022-02-19T19:03:25Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f16adc7-482a-4894-bdd1-cabf0c1eb91f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000318-0000000000000636-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c728dfc0-07fa-4a02-a240-e50f116967a6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e1e5aa8d-e54a-4bea-b6c8-7297640a0ae1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "8" + }, + "ResponseBody": { + "jobId": "1f16adc7-482a-4894-bdd1-cabf0c1eb91f", + "lastUpdateDateTime": "2022-02-18T19:03:26Z", + "createdDateTime": "2022-02-18T19:03:25Z", + "expirationDateTime": "2022-02-19T19:03:25Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f16adc7-482a-4894-bdd1-cabf0c1eb91f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000319-0000000000000638-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "31571e53-ba2c-4b3c-aca4-076a819391e1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ac15026-d717-4bc9-ad71-1d56979c374b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "1f16adc7-482a-4894-bdd1-cabf0c1eb91f", + "lastUpdateDateTime": "2022-02-18T19:03:29Z", + "createdDateTime": "2022-02-18T19:03:25Z", + "expirationDateTime": "2022-02-19T19:03:25Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/1f16adc7-482a-4894-bdd1-cabf0c1eb91f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000320-0000000000000640-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1ca95dcb-0e6f-4ca2-9b5b-609b39bcfe2f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85572ccb-bbdf-4f96-b493-e37c64ccbe94", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "182" + }, + "ResponseBody": { + "jobId": "1f16adc7-482a-4894-bdd1-cabf0c1eb91f", + "lastUpdateDateTime": "2022-02-18T19:03:29Z", + "createdDateTime": "2022-02-18T19:03:25Z", + "expirationDateTime": "2022-02-19T19:03:25Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [ + { + "code": "DocumentTruncated", + "message": "Document is greater than 5120 chars; relations across splits of 5120 chars may be skipped by the model" + } + ] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js deleted file mode 100644 index a6f7bac102f1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js +++ /dev/null @@ -1,45 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "046726cf9dbc05307b6526966952ecfa"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/9bb2aa4b-5abd-4364-925f-3dff9988eedc', - 'x-envoy-upstream-service-time', - '178', - 'apim-request-id', - '9923a5de-0f3d-494a-bb27-7ca6bd0a16aa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/9bb2aa4b-5abd-4364-925f-3dff9988eedc') - .query(true) - .reply(200, {"jobId":"9bb2aa4b-5abd-4364-925f-3dff9988eedc","lastUpdateDateTime":"2021-10-23T00:43:03Z","createdDateTime":"2021-10-23T00:43:02Z","expirationDateTime":"2021-10-24T00:43:02Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'eff0bf47-3f71-463d-98e0-e8e12914f291', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:02 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.json new file mode 100644 index 000000000000..6fc86c13b2b4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.json @@ -0,0 +1,77 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000322-0000000000000644-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "740429cc-39a0-4fe7-ab6b-f27857e1ba0e" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "bb2ceda9-e6af-4b56-83e3-9df2d382f0b2", + "Date": "Fri, 18 Feb 2022 19:03:31 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7591b184-2bb4-4e82-be37-df6018947af1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/7591b184-2bb4-4e82-be37-df6018947af1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000323-0000000000000646-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5d8db8c9-82f5-481a-b656-63d1cfe10475" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "316e0eda-fc2a-46aa-88ae-2bf633558dea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "jobId": "7591b184-2bb4-4e82-be37-df6018947af1", + "lastUpdateDateTime": "2022-02-18T19:03:31Z", + "createdDateTime": "2022-02-18T19:03:31Z", + "expirationDateTime": "2022-02-19T19:03:31Z", + "status": "running", + "errors": [] + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.js deleted file mode 100644 index 926a7cf1f0e4..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "692c28f4e7d96a9f71e04224dcbab4ad"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"This won't actually create a warning :'("}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/ebfb6ad0-1bdd-4eb5-b486-056be2c49d55', - 'x-envoy-upstream-service-time', - '217', - 'apim-request-id', - 'e683901e-bb10-4539-93d1-8831cee7ecf1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/ebfb6ad0-1bdd-4eb5-b486-056be2c49d55') - .query(true) - .reply(200, {"jobId":"ebfb6ad0-1bdd-4eb5-b486-056be2c49d55","lastUpdateDateTime":"2021-10-23T00:42:32Z","createdDateTime":"2021-10-23T00:42:32Z","expirationDateTime":"2021-10-24T00:42:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '32', - 'apim-request-id', - 'bbfd3f08-e9ea-42b1-bacc-029392c2fe0c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/ebfb6ad0-1bdd-4eb5-b486-056be2c49d55') - .query(true) - .reply(200, {"jobId":"ebfb6ad0-1bdd-4eb5-b486-056be2c49d55","lastUpdateDateTime":"2021-10-23T00:42:32Z","createdDateTime":"2021-10-23T00:42:32Z","expirationDateTime":"2021-10-24T00:42:32Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'a4786757-ba6f-490e-a0ec-7c43d16cd473', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/ebfb6ad0-1bdd-4eb5-b486-056be2c49d55') - .query(true) - .reply(200, {"jobId":"ebfb6ad0-1bdd-4eb5-b486-056be2c49d55","lastUpdateDateTime":"2021-10-23T00:42:33Z","createdDateTime":"2021-10-23T00:42:32Z","expirationDateTime":"2021-10-24T00:42:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '73', - 'apim-request-id', - '921b866b-ccfb-41e2-8194-449c0cd57f58', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/ebfb6ad0-1bdd-4eb5-b486-056be2c49d55') - .query(true) - .reply(200, {"jobId":"ebfb6ad0-1bdd-4eb5-b486-056be2c49d55","lastUpdateDateTime":"2021-10-23T00:42:33Z","createdDateTime":"2021-10-23T00:42:32Z","expirationDateTime":"2021-10-24T00:42:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '75', - 'apim-request-id', - '7ee2fab4-4a25-4e7c-94fc-2cc63da1fde6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:34 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.json new file mode 100644 index 000000000000..0001b134022d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.json @@ -0,0 +1,191 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "76", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000263-0000000000000526-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "2f7d4bbe-f532-429d-8bdf-f7f897509c9e" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This won\u0027t actually create a warning :\u0027(" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "52e5d593-5c98-4b2b-92c4-3eb42b75727c", + "Date": "Fri, 18 Feb 2022 19:02:53 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/38f43ba8-e40a-4a4d-b275-98c75d60937d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/38f43ba8-e40a-4a4d-b275-98c75d60937d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000264-0000000000000528-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6e1ec71e-23d9-4070-9c87-613aa7101a39" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4b47d7d1-40e6-499a-b494-83a13ce62a5b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "38f43ba8-e40a-4a4d-b275-98c75d60937d", + "lastUpdateDateTime": "2022-02-18T19:02:53Z", + "createdDateTime": "2022-02-18T19:02:53Z", + "expirationDateTime": "2022-02-19T19:02:53Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/38f43ba8-e40a-4a4d-b275-98c75d60937d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000265-0000000000000530-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cb8b9c7d-d61e-4019-8af4-8b33c39c655a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff829ca6-51cc-4305-aacb-574237eb7acf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "38f43ba8-e40a-4a4d-b275-98c75d60937d", + "lastUpdateDateTime": "2022-02-18T19:02:53Z", + "createdDateTime": "2022-02-18T19:02:53Z", + "expirationDateTime": "2022-02-19T19:02:53Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/38f43ba8-e40a-4a4d-b275-98c75d60937d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000266-0000000000000532-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8941da84-b42f-40d0-8f7b-5fb62c458151" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef815287-af9b-4b77-a92a-9a02d3ae342a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "38f43ba8-e40a-4a4d-b275-98c75d60937d", + "lastUpdateDateTime": "2022-02-18T19:02:54Z", + "createdDateTime": "2022-02-18T19:02:53Z", + "expirationDateTime": "2022-02-19T19:02:53Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/38f43ba8-e40a-4a4d-b275-98c75d60937d?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000267-0000000000000534-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c6d40d01-032f-4508-b291-145f008ad117" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "078c5616-ebef-46f9-9a1b-371f1fd0ad20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "38f43ba8-e40a-4a4d-b275-98c75d60937d", + "lastUpdateDateTime": "2022-02-18T19:02:54Z", + "createdDateTime": "2022-02-18T19:02:53Z", + "expirationDateTime": "2022-02-19T19:02:53Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js deleted file mode 100644 index cf89db764161..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f3f46cab08b3670e4445e7d19a63d3c5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"hello world"},{"id":"1","text":"I did not like the hotel we stayed at."}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Request contains duplicated Ids. Make sure each document has a unique Id."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5', - 'apim-request-id', - '97cc7d48-bbd0-4930-a359-c9ff4587a01f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:02 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json new file mode 100644 index 000000000000..09566810750a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json @@ -0,0 +1,52 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "106", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000321-0000000000000642-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3b01aaec-162a-491f-bd12-342dd183f178" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "hello world" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at." + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "79fa22e2-c967-42e5-9581-d2e144f03068", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Request contains duplicated Ids. Make sure each document has a unique Id." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.js deleted file mode 100644 index f6639ed77cdd..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.js +++ /dev/null @@ -1,325 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6c84b95328582df279435043ada9d912"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"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"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32', - 'x-envoy-upstream-service-time', - '213', - 'apim-request-id', - 'e0b17d7f-24fd-4914-9358-37656fbd5886', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - '40cf4592-7ed1-41be-b0ad-768e4638fbf8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '4a413626-983e-40ca-89e2-8d039f2f105b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'c2229dc1-daf4-4de5-91b3-8030715a6730', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '32bf1f2f-de24-4c50-ac41-a6c543828039', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '21', - 'apim-request-id', - 'd52b12cc-0fc5-4fc3-9500-008dba2300d1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '4735836b-e412-4810-a317-5cefc996a48d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - '7a701dbc-0c46-49d9-bb47-f49a8f570b3f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:32Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '149bf652-ff08-4df7-ba77-4ed20e7e00c8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:46Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '31', - 'apim-request-id', - '37503ca7-c265-4e34-8bf9-1a42df6b1fd7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:46Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '0851fac5-d1f1-4cf4-bd59-b38d0d1efb1a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:46Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '41226880-958d-41a1-bb95-c95e85d8858b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:46Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'f5a098b9-6042-4cfc-bfd8-06257f582871', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:46Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '99c59792-90f7-4787-96fe-edeb8b139bfe', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:56Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"succeeded","errors":[],"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,"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":"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":"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":1,"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":"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_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","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":"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.9,"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,"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":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '122', - 'apim-request-id', - 'aeb9c9ac-dd8c-4942-93f3-a630413d1089', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/cf911866-87f7-4aff-9c19-e1583e1a2e32') - .query(true) - .reply(200, {"jobId":"cf911866-87f7-4aff-9c19-e1583e1a2e32","lastUpdateDateTime":"2021-10-23T00:41:56Z","createdDateTime":"2021-10-23T00:41:32Z","expirationDateTime":"2021-10-24T00:41:32Z","status":"succeeded","errors":[],"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,"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":"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":"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":1,"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":"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_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","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":"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.9,"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,"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":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '69', - 'apim-request-id', - '0fdeae7e-375c-4e38-863f-63de7e8dc2c1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:57 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json new file mode 100644 index 000000000000..6706cfcbb05e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json @@ -0,0 +1,1574 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "157", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000241-0000000000000482-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4cd03c85-81ae-4c95-96ad-acbfeaedb46e" + }, + "RequestBody": { + "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" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "d42056e2-862c-4640-9feb-8a7601c1f661", + "Date": "Fri, 18 Feb 2022 19:02:39 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46973edd-f3a4-4b5b-b563-131712789e8a", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "146" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46973edd-f3a4-4b5b-b563-131712789e8a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000242-0000000000000484-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bf913b95-6a09-419b-b410-8a31a235ac0c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb7f8c46-d712-405b-aeaa-f50438c615c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "jobId": "46973edd-f3a4-4b5b-b563-131712789e8a", + "lastUpdateDateTime": "2022-02-18T19:02:39Z", + "createdDateTime": "2022-02-18T19:02:39Z", + "expirationDateTime": "2022-02-19T19:02:39Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46973edd-f3a4-4b5b-b563-131712789e8a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000243-0000000000000486-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ef7cf573-2703-4e57-8af9-0b7a2d63789d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4ef298f-bef3-468c-a10f-5dddc73d4583", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "46973edd-f3a4-4b5b-b563-131712789e8a", + "lastUpdateDateTime": "2022-02-18T19:02:39Z", + "createdDateTime": "2022-02-18T19:02:39Z", + "expirationDateTime": "2022-02-19T19:02:39Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46973edd-f3a4-4b5b-b563-131712789e8a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000244-0000000000000488-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6f49815b-e689-4755-9f4f-44b1330fc02e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4e7ac2a6-966c-415f-b07d-75071f2cd1a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "46973edd-f3a4-4b5b-b563-131712789e8a", + "lastUpdateDateTime": "2022-02-18T19:02:40Z", + "createdDateTime": "2022-02-18T19:02:39Z", + "expirationDateTime": "2022-02-19T19:02:39Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/46973edd-f3a4-4b5b-b563-131712789e8a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000245-0000000000000490-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "31930a0d-6df4-4b82-86ee-8205cf0e06cd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b17a1ab-abd9-43d6-831f-1e18e543cb27", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "46973edd-f3a4-4b5b-b563-131712789e8a", + "lastUpdateDateTime": "2022-02-18T19:02:40Z", + "createdDateTime": "2022-02-18T19:02:39Z", + "expirationDateTime": "2022-02-19T19:02:39Z", + "status": "succeeded", + "errors": [], + "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": "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": "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": 1.0, + "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": "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_NCI-GLOSS", + "id": "CDR0000450108" + }, + { + "dataSource": "NCI_NICHD", + "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": "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.9, + "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": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js deleted file mode 100644 index 3516790b1503..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6197be518bc787450217d0b89ab9001b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/d72627e9-d715-4cbb-8fb7-3acb41f32049', - 'x-envoy-upstream-service-time', - '318', - 'apim-request-id', - 'a872195b-70c4-4506-95de-a17b32b01f04', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/d72627e9-d715-4cbb-8fb7-3acb41f32049') - .query(true) - .reply(200, {"jobId":"d72627e9-d715-4cbb-8fb7-3acb41f32049","lastUpdateDateTime":"2021-10-23T00:43:08Z","createdDateTime":"2021-10-23T00:43:08Z","expirationDateTime":"2021-10-24T00:43:08Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2c6f01ad-5122-402b-bfb8-7d59d53c7944', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/d72627e9-d715-4cbb-8fb7-3acb41f32049') - .query(true) - .reply(200, {"jobId":"d72627e9-d715-4cbb-8fb7-3acb41f32049","lastUpdateDateTime":"2021-10-23T00:43:08Z","createdDateTime":"2021-10-23T00:43:08Z","expirationDateTime":"2021-10-24T00:43:08Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '25', - 'apim-request-id', - 'dac27aa3-7cfa-43ae-9b7e-34ce5fc9d2c6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/d72627e9-d715-4cbb-8fb7-3acb41f32049') - .query(true) - .reply(200, {"jobId":"d72627e9-d715-4cbb-8fb7-3acb41f32049","lastUpdateDateTime":"2021-10-23T00:43:09Z","createdDateTime":"2021-10-23T00:43:08Z","expirationDateTime":"2021-10-24T00:43:08Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '73', - 'apim-request-id', - 'bdbfca43-9c3f-4080-a1c8-6a6f1e476945', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/d72627e9-d715-4cbb-8fb7-3acb41f32049') - .query(true) - .reply(200, {"jobId":"d72627e9-d715-4cbb-8fb7-3acb41f32049","lastUpdateDateTime":"2021-10-23T00:43:09Z","createdDateTime":"2021-10-23T00:43:08Z","expirationDateTime":"2021-10-24T00:43:08Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '98', - 'apim-request-id', - '4be960f2-37bc-4aeb-8fb7-6fe0342d6747', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:10 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json new file mode 100644 index 000000000000..e7b2552dbf68 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json @@ -0,0 +1,454 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=UnicodeCodePoint", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000333-0000000000000666-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8fdce9a5-fbaf-48b7-a31b-db121c8236ce" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "635785dc-c834-4932-b596-7cb76078d3d0", + "Date": "Fri, 18 Feb 2022 19:03:38 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/383264f6-b783-4b0f-a402-973a96271136", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "86" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/383264f6-b783-4b0f-a402-973a96271136?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000334-0000000000000668-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "475281b3-8561-435f-a83e-797eb42e06ca" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "098cc7d5-ef1c-4e50-85ec-417e817011b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "383264f6-b783-4b0f-a402-973a96271136", + "lastUpdateDateTime": "2022-02-18T19:03:38Z", + "createdDateTime": "2022-02-18T19:03:38Z", + "expirationDateTime": "2022-02-19T19:03:38Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/383264f6-b783-4b0f-a402-973a96271136?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000335-0000000000000670-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "270a8d54-f724-4f23-afe5-4a00924cdba4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "918c32c9-63cf-4f3c-be70-f4241220d996", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "383264f6-b783-4b0f-a402-973a96271136", + "lastUpdateDateTime": "2022-02-18T19:03:39Z", + "createdDateTime": "2022-02-18T19:03:38Z", + "expirationDateTime": "2022-02-19T19:03:38Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/383264f6-b783-4b0f-a402-973a96271136?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000336-0000000000000672-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d45d3035-8832-406f-8821-3a1d5138b15c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d28eed73-b807-4093-abf4-a0bf26caf394", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" + }, + "ResponseBody": { + "jobId": "383264f6-b783-4b0f-a402-973a96271136", + "lastUpdateDateTime": "2022-02-18T19:03:39Z", + "createdDateTime": "2022-02-18T19:03:38Z", + "expirationDateTime": "2022-02-19T19:03:38Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/383264f6-b783-4b0f-a402-973a96271136?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000337-0000000000000674-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9c446f63-e247-43ba-9f52-c2b3c16866c2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22f1f6ef-9308-4b68-b087-e420ec2cff70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "jobId": "383264f6-b783-4b0f-a402-973a96271136", + "lastUpdateDateTime": "2022-02-18T19:03:39Z", + "createdDateTime": "2022-02-18T19:03:38Z", + "expirationDateTime": "2022-02-19T19:03:38Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 12, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js deleted file mode 100644 index 37bac8366357..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b05b4bf7009369b70b036897b144ee54"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/5a58406d-dda5-4433-9fcc-16282330ea6d', - 'x-envoy-upstream-service-time', - '151', - 'apim-request-id', - 'd6cff0c2-22bd-4690-825b-06ecc696fe4f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/5a58406d-dda5-4433-9fcc-16282330ea6d') - .query(true) - .reply(200, {"jobId":"5a58406d-dda5-4433-9fcc-16282330ea6d","lastUpdateDateTime":"2021-10-23T00:43:05Z","createdDateTime":"2021-10-23T00:43:05Z","expirationDateTime":"2021-10-24T00:43:05Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12', - 'apim-request-id', - 'ea13a49f-f35d-442c-8890-a93d39209e21', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/5a58406d-dda5-4433-9fcc-16282330ea6d') - .query(true) - .reply(200, {"jobId":"5a58406d-dda5-4433-9fcc-16282330ea6d","lastUpdateDateTime":"2021-10-23T00:43:05Z","createdDateTime":"2021-10-23T00:43:05Z","expirationDateTime":"2021-10-24T00:43:05Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '68dd7c08-19a4-4d82-8852-a9545ef849b9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:05 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/5a58406d-dda5-4433-9fcc-16282330ea6d') - .query(true) - .reply(200, {"jobId":"5a58406d-dda5-4433-9fcc-16282330ea6d","lastUpdateDateTime":"2021-10-23T00:43:06Z","createdDateTime":"2021-10-23T00:43:05Z","expirationDateTime":"2021-10-24T00:43:05Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '70', - 'apim-request-id', - '8e6a3aaa-9195-405e-b38a-8843b7b41fd7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/5a58406d-dda5-4433-9fcc-16282330ea6d') - .query(true) - .reply(200, {"jobId":"5a58406d-dda5-4433-9fcc-16282330ea6d","lastUpdateDateTime":"2021-10-23T00:43:06Z","createdDateTime":"2021-10-23T00:43:05Z","expirationDateTime":"2021-10-24T00:43:05Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '68', - 'apim-request-id', - '91dd77be-0e39-4f39-85ff-736e5162eb50', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:07 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json new file mode 100644 index 000000000000..78acdabc6bd0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json @@ -0,0 +1,454 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "103", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000328-0000000000000656-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a194f371-98ef-4eb0-9b3c-19a737949afc" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "\uD83D\uDC69\uD83C\uDFFB\u200D\uD83D\uDC69\uD83C\uDFFD\u200D\uD83D\uDC67\uD83C\uDFFE\u200D\uD83D\uDC66\uD83C\uDFFF ibuprofen", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "53d6a90d-7d79-4ad0-886a-8a13432ef69d", + "Date": "Fri, 18 Feb 2022 19:03:35 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/51ad626d-1329-45c8-92a8-5411a6147b38", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/51ad626d-1329-45c8-92a8-5411a6147b38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000329-0000000000000658-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4605e6a8-9355-4ea9-82c3-9454ecf3337f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df1724f5-e457-4dec-a071-63d2262097f8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "9" + }, + "ResponseBody": { + "jobId": "51ad626d-1329-45c8-92a8-5411a6147b38", + "lastUpdateDateTime": "2022-02-18T19:03:35Z", + "createdDateTime": "2022-02-18T19:03:35Z", + "expirationDateTime": "2022-02-19T19:03:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/51ad626d-1329-45c8-92a8-5411a6147b38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000330-0000000000000660-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a745a8c5-be83-4f43-b063-80ecb80e27bf" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c51ebba-f14f-4fb0-973f-fd1e06c1a9fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "7" + }, + "ResponseBody": { + "jobId": "51ad626d-1329-45c8-92a8-5411a6147b38", + "lastUpdateDateTime": "2022-02-18T19:03:35Z", + "createdDateTime": "2022-02-18T19:03:35Z", + "expirationDateTime": "2022-02-19T19:03:35Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/51ad626d-1329-45c8-92a8-5411a6147b38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000331-0000000000000662-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1715dd0d-c537-43e1-939f-ee8443eb301a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9c1454f-6800-4259-a71e-fe2b85e57859", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "53" + }, + "ResponseBody": { + "jobId": "51ad626d-1329-45c8-92a8-5411a6147b38", + "lastUpdateDateTime": "2022-02-18T19:03:36Z", + "createdDateTime": "2022-02-18T19:03:35Z", + "expirationDateTime": "2022-02-19T19:03:35Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/51ad626d-1329-45c8-92a8-5411a6147b38?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000332-0000000000000664-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "823eec60-1059-44aa-b817-c45bca304e01" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83a5fee4-f7ab-49eb-904e-cf6a80fec00b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "32" + }, + "ResponseBody": { + "jobId": "51ad626d-1329-45c8-92a8-5411a6147b38", + "lastUpdateDateTime": "2022-02-18T19:03:36Z", + "createdDateTime": "2022-02-18T19:03:35Z", + "expirationDateTime": "2022-02-19T19:03:35Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 20, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 0.99, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js deleted file mode 100644 index 11e1d8283dd0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "49bec9b10a9cab68dfc05bc1e2e6ed68"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/37b700d2-f41f-4f88-b857-7c8a20f99abe', - 'x-envoy-upstream-service-time', - '232', - 'apim-request-id', - 'b64647d8-0dae-4ec7-ac37-13ae6a44b3d0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/37b700d2-f41f-4f88-b857-7c8a20f99abe') - .query(true) - .reply(200, {"jobId":"37b700d2-f41f-4f88-b857-7c8a20f99abe","lastUpdateDateTime":"2021-10-23T00:41:58Z","createdDateTime":"2021-10-23T00:41:58Z","expirationDateTime":"2021-10-24T00:41:58Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '88', - 'apim-request-id', - '57757cb2-c860-4a59-a5d7-ba60dbacbc68', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/37b700d2-f41f-4f88-b857-7c8a20f99abe') - .query(true) - .reply(200, {"jobId":"37b700d2-f41f-4f88-b857-7c8a20f99abe","lastUpdateDateTime":"2021-10-23T00:41:58Z","createdDateTime":"2021-10-23T00:41:58Z","expirationDateTime":"2021-10-24T00:41:58Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '37', - 'apim-request-id', - '1359cad0-6128-45e7-bafd-9f1eaa8d231f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/37b700d2-f41f-4f88-b857-7c8a20f99abe') - .query(true) - .reply(200, {"jobId":"37b700d2-f41f-4f88-b857-7c8a20f99abe","lastUpdateDateTime":"2021-10-23T00:41:58Z","createdDateTime":"2021-10-23T00:41:58Z","expirationDateTime":"2021-10-24T00:41:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '214', - 'apim-request-id', - 'e9d462d3-7c83-4018-af59-f4f7eac77405', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/37b700d2-f41f-4f88-b857-7c8a20f99abe') - .query(true) - .reply(200, {"jobId":"37b700d2-f41f-4f88-b857-7c8a20f99abe","lastUpdateDateTime":"2021-10-23T00:41:58Z","createdDateTime":"2021-10-23T00:41:58Z","expirationDateTime":"2021-10-24T00:41:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '81', - 'apim-request-id', - '694fe0a0-7674-40d3-af1e-50e6c1d74b6b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:00 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.json new file mode 100644 index 000000000000..ab5d7e2da249 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.json @@ -0,0 +1,941 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000246-0000000000000492-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4215c620-36ca-4dea-99fc-44449958d5cd" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9825631e-f1e8-4571-b01a-abd80be433ef", + "Date": "Fri, 18 Feb 2022 19:02:42 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6652d240-6975-4d56-ab84-86da0359be9a", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6652d240-6975-4d56-ab84-86da0359be9a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000247-0000000000000494-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7353e371-1bce-4946-a5ff-e3d7c592312f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7afa6eb-e052-4cc2-97d6-2562413ba882", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "6652d240-6975-4d56-ab84-86da0359be9a", + "lastUpdateDateTime": "2022-02-18T19:02:42Z", + "createdDateTime": "2022-02-18T19:02:42Z", + "expirationDateTime": "2022-02-19T19:02:42Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6652d240-6975-4d56-ab84-86da0359be9a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000248-0000000000000496-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "abce9d55-2ccf-44de-9f5d-efde0b860659" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "745307cb-93d5-49ee-bdc5-d2b1b9e14fb9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "6652d240-6975-4d56-ab84-86da0359be9a", + "lastUpdateDateTime": "2022-02-18T19:02:42Z", + "createdDateTime": "2022-02-18T19:02:42Z", + "expirationDateTime": "2022-02-19T19:02:42Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6652d240-6975-4d56-ab84-86da0359be9a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000249-0000000000000498-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "28565cae-c3bb-4ece-b2a9-acb27a27d70f" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0d657a59-4e73-4e42-8c30-0a6d1a4e1617", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "105" + }, + "ResponseBody": { + "jobId": "6652d240-6975-4d56-ab84-86da0359be9a", + "lastUpdateDateTime": "2022-02-18T19:02:43Z", + "createdDateTime": "2022-02-18T19:02:42Z", + "expirationDateTime": "2022-02-19T19:02:42Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6652d240-6975-4d56-ab84-86da0359be9a?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000250-0000000000000500-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "53601e1f-90c6-4319-a9c2-6ef776eaa328" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6eddcfa1-3c63-4bd9-9322-89b9740ef009", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "6652d240-6975-4d56-ab84-86da0359be9a", + "lastUpdateDateTime": "2022-02-18T19:02:43Z", + "createdDateTime": "2022-02-18T19:02:42Z", + "expirationDateTime": "2022-02-19T19:02:42Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js deleted file mode 100644 index a544fdc2f45f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js +++ /dev/null @@ -1,225 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e8fe4b7a699e69181a6d1d694a0b8992"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"1","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b', - 'x-envoy-upstream-service-time', - '173', - 'apim-request-id', - '16680f6b-b415-420c-8f30-bb832d89a668', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:17Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '43', - 'apim-request-id', - 'cd161b79-bb81-4986-b356-97d596114671', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:17Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '54fb4e52-10b5-445b-922a-4a02d32dac80', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:17Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '38a304cf-3633-4814-aff0-be15e9d54957', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:19 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:17Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '66c0741e-8797-48ec-b164-01f417cb17fc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:21 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:22Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'f55cf3a4-b353-46c4-ba58-181ba419bd5d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:22Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '7133cfdb-18d1-411d-a22e-aaee3ffe68ec', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:22Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '921b5599-7570-474f-90dc-d9a1aac1f87a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:22Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - 'c864436e-1de6-473b-bbf1-b738bdf495e9', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:30Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '93', - 'apim-request-id', - 'ca301aac-3eff-4230-bc66-055ca741ec61', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/e942d3fb-f1e9-4f38-8969-605e1458540b') - .query(true) - .reply(200, {"jobId":"e942d3fb-f1e9-4f38-8969-605e1458540b","lastUpdateDateTime":"2021-10-23T00:41:30Z","createdDateTime":"2021-10-23T00:41:17Z","expirationDateTime":"2021-10-24T00:41:17Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '131', - 'apim-request-id', - '42365aa6-281f-4c37-a40f-3e1073add1b4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:41:32 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.json new file mode 100644 index 000000000000..1909d952efa9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.json @@ -0,0 +1,941 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000236-0000000000000472-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a8e6497a-00cc-4db8-9101-5fb5889735f5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "1", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "499ad51c-aabf-43a8-8987-3641ce2c1642", + "Date": "Fri, 18 Feb 2022 19:02:35 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/88f5c931-844d-4773-864c-fda4c25b7c88", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/88f5c931-844d-4773-864c-fda4c25b7c88?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000237-0000000000000474-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "7c6f76da-cc82-44ff-945d-147f5e82b40d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b1b18b5-ce2a-4ac8-bcc5-be2ffde26c4c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "88f5c931-844d-4773-864c-fda4c25b7c88", + "lastUpdateDateTime": "2022-02-18T19:02:35Z", + "createdDateTime": "2022-02-18T19:02:35Z", + "expirationDateTime": "2022-02-19T19:02:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/88f5c931-844d-4773-864c-fda4c25b7c88?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000238-0000000000000476-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b5bb9264-815f-4ffe-b55a-edf65dd3edb1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8443662b-8d15-48fe-a3dd-6a87fdc4280c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "879" + }, + "ResponseBody": { + "jobId": "88f5c931-844d-4773-864c-fda4c25b7c88", + "lastUpdateDateTime": "2022-02-18T19:02:36Z", + "createdDateTime": "2022-02-18T19:02:35Z", + "expirationDateTime": "2022-02-19T19:02:35Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/88f5c931-844d-4773-864c-fda4c25b7c88?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000239-0000000000000478-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4e3ff0ae-b85f-481e-9ca7-f9842e97bfbe" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f454c97-5953-484d-990c-a2ecaa11eb11", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "jobId": "88f5c931-844d-4773-864c-fda4c25b7c88", + "lastUpdateDateTime": "2022-02-18T19:02:36Z", + "createdDateTime": "2022-02-18T19:02:35Z", + "expirationDateTime": "2022-02-19T19:02:35Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/88f5c931-844d-4773-864c-fda4c25b7c88?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000240-0000000000000480-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8b73839d-dff3-4375-8760-c9954d10d235" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15d83955-da97-4f9c-8c72-912205cc016e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "117" + }, + "ResponseBody": { + "jobId": "88f5c931-844d-4773-864c-fda4c25b7c88", + "lastUpdateDateTime": "2022-02-18T19:02:36Z", + "createdDateTime": "2022-02-18T19:02:35Z", + "expirationDateTime": "2022-02-19T19:02:35Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js deleted file mode 100644 index f1ef0593d861..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "4fe6d983363e697807ee4c3c068d2783"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b8ba8dd9-187d-4d07-bf58-8fde3875f200', - 'x-envoy-upstream-service-time', - '182', - 'apim-request-id', - 'acc20f5c-829c-4a18-bcd5-55dcc9779606', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b8ba8dd9-187d-4d07-bf58-8fde3875f200') - .query(true) - .reply(200, {"jobId":"b8ba8dd9-187d-4d07-bf58-8fde3875f200","lastUpdateDateTime":"2021-10-23T00:42:54Z","createdDateTime":"2021-10-23T00:42:54Z","expirationDateTime":"2021-10-24T00:42:54Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f2938db2-20f9-4c79-81ef-81b5363c3880', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b8ba8dd9-187d-4d07-bf58-8fde3875f200') - .query(true) - .reply(200, {"jobId":"b8ba8dd9-187d-4d07-bf58-8fde3875f200","lastUpdateDateTime":"2021-10-23T00:42:54Z","createdDateTime":"2021-10-23T00:42:54Z","expirationDateTime":"2021-10-24T00:42:54Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'c04fab3d-6651-4ef2-b241-f88461a10be5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b8ba8dd9-187d-4d07-bf58-8fde3875f200') - .query(true) - .reply(200, {"jobId":"b8ba8dd9-187d-4d07-bf58-8fde3875f200","lastUpdateDateTime":"2021-10-23T00:42:55Z","createdDateTime":"2021-10-23T00:42:54Z","expirationDateTime":"2021-10-24T00:42:54Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '154', - 'apim-request-id', - '3ee7dca4-eac7-4e0f-b7c8-2bf468a0029a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:56 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b8ba8dd9-187d-4d07-bf58-8fde3875f200') - .query(true) - .reply(200, {"jobId":"b8ba8dd9-187d-4d07-bf58-8fde3875f200","lastUpdateDateTime":"2021-10-23T00:42:55Z","createdDateTime":"2021-10-23T00:42:54Z","expirationDateTime":"2021-10-24T00:42:54Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '90', - 'apim-request-id', - 'de1656a8-248c-428b-b303-53fb4ae7d97b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:56 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json new file mode 100644 index 000000000000..012499fce78b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json @@ -0,0 +1,170 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000302-0000000000000604-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c4643071-1cc8-470c-857f-515febed14e4" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "784bb224-bd82-48e0-878e-06193028e7ad", + "Date": "Fri, 18 Feb 2022 19:03:19 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9d583d81-26d5-4bfd-a403-6e2ff408408e", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9d583d81-26d5-4bfd-a403-6e2ff408408e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000303-0000000000000606-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8ce56620-899d-482c-b573-6d103f64b56b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "de1a1ba7-22a6-44a5-89ad-5b71ac86ce2d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "9d583d81-26d5-4bfd-a403-6e2ff408408e", + "lastUpdateDateTime": "2022-02-18T19:03:20Z", + "createdDateTime": "2022-02-18T19:03:20Z", + "expirationDateTime": "2022-02-19T19:03:20Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9d583d81-26d5-4bfd-a403-6e2ff408408e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000304-0000000000000608-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b06e88a5-72c7-4f3e-98dd-41da81b9b846" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f349e0df-eeaf-492e-96da-739d742aefff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "jobId": "9d583d81-26d5-4bfd-a403-6e2ff408408e", + "lastUpdateDateTime": "2022-02-18T19:03:20Z", + "createdDateTime": "2022-02-18T19:03:20Z", + "expirationDateTime": "2022-02-19T19:03:20Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/9d583d81-26d5-4bfd-a403-6e2ff408408e?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000305-0000000000000610-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "783b49b3-1a6a-443b-8b63-5ce637d1861e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "acb29eb6-3e36-4ac2-8cae-4c695db4fe19", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:19 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": "9d583d81-26d5-4bfd-a403-6e2ff408408e", + "lastUpdateDateTime": "2022-02-18T19:03:20Z", + "createdDateTime": "2022-02-18T19:03:20Z", + "expirationDateTime": "2022-02-19T19:03:20Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "0", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js deleted file mode 100644 index 2b203c717cc0..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "95091b45dc61495bb4243ad632fd8fa2"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/a1f47bab-9c8e-4d9f-acec-8f0636fa1b14', - 'x-envoy-upstream-service-time', - '352', - 'apim-request-id', - 'bde29f15-6ebe-42bf-836f-01024afa2400', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/a1f47bab-9c8e-4d9f-acec-8f0636fa1b14') - .query(true) - .reply(200, {"jobId":"a1f47bab-9c8e-4d9f-acec-8f0636fa1b14","lastUpdateDateTime":"2021-10-23T00:42:57Z","createdDateTime":"2021-10-23T00:42:57Z","expirationDateTime":"2021-10-24T00:42:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - 'b238bb40-08bc-4003-81c6-caeb7dfcd382', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/a1f47bab-9c8e-4d9f-acec-8f0636fa1b14') - .query(true) - .reply(200, {"jobId":"a1f47bab-9c8e-4d9f-acec-8f0636fa1b14","lastUpdateDateTime":"2021-10-23T00:42:57Z","createdDateTime":"2021-10-23T00:42:57Z","expirationDateTime":"2021-10-24T00:42:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'e15c3b0e-7acf-4466-ab94-e4bf2c130e21', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/a1f47bab-9c8e-4d9f-acec-8f0636fa1b14') - .query(true) - .reply(200, {"jobId":"a1f47bab-9c8e-4d9f-acec-8f0636fa1b14","lastUpdateDateTime":"2021-10-23T00:42:58Z","createdDateTime":"2021-10-23T00:42:57Z","expirationDateTime":"2021-10-24T00:42:57Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '67', - 'apim-request-id', - 'bc79b900-8f32-4925-b7b0-05217cee158c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/a1f47bab-9c8e-4d9f-acec-8f0636fa1b14') - .query(true) - .reply(200, {"jobId":"a1f47bab-9c8e-4d9f-acec-8f0636fa1b14","lastUpdateDateTime":"2021-10-23T00:42:58Z","createdDateTime":"2021-10-23T00:42:57Z","expirationDateTime":"2021-10-24T00:42:57Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '95', - 'apim-request-id', - '6da4bba5-93eb-42f3-89d0-7d97cbe62a3b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:59 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json new file mode 100644 index 000000000000..6f5de9f2384e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json @@ -0,0 +1,202 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "128", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000306-0000000000000612-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "6010e46e-f59e-4766-abaf-1708c784c3a8" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "This should fail because we\u0027re passing in an invalid language hint", + "language": "notalanguage" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "05787c28-ff4b-4c7f-8a14-28e6d32170d7", + "Date": "Fri, 18 Feb 2022 19:03:20 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/806256af-fa98-474f-aa98-c9198d9c1339", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "192" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/806256af-fa98-474f-aa98-c9198d9c1339?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000307-0000000000000614-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e64105a2-7416-4b18-91a4-45e9b741e96b" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3fead8c2-3aaa-4673-8cb9-99fcd586ccd7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" + }, + "ResponseBody": { + "jobId": "806256af-fa98-474f-aa98-c9198d9c1339", + "lastUpdateDateTime": "2022-02-18T19:03:21Z", + "createdDateTime": "2022-02-18T19:03:21Z", + "expirationDateTime": "2022-02-19T19:03:21Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/806256af-fa98-474f-aa98-c9198d9c1339?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000308-0000000000000616-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "f2f5174f-b485-4f82-98c6-2f1624b85bf8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b6f5b53b-f24c-4efa-bb89-eadbec6ed724", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "806256af-fa98-474f-aa98-c9198d9c1339", + "lastUpdateDateTime": "2022-02-18T19:03:21Z", + "createdDateTime": "2022-02-18T19:03:21Z", + "expirationDateTime": "2022-02-19T19:03:21Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/806256af-fa98-474f-aa98-c9198d9c1339?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000309-0000000000000618-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "470d56c8-9274-4190-ba1b-17729bd978cc" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2bb218e-4f2f-410d-948a-82dbdfef6aea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "jobId": "806256af-fa98-474f-aa98-c9198d9c1339", + "lastUpdateDateTime": "2022-02-18T19:03:21Z", + "createdDateTime": "2022-02-18T19:03:21Z", + "expirationDateTime": "2022-02-19T19:03:21Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/806256af-fa98-474f-aa98-c9198d9c1339?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000310-0000000000000620-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8636f467-94a8-4636-9d25-f9182544430e" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eecdf3b4-3eca-4788-9a2b-30f00d3a8009", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "806256af-fa98-474f-aa98-c9198d9c1339", + "lastUpdateDateTime": "2022-02-18T19:03:21Z", + "createdDateTime": "2022-02-18T19:03:21Z", + "expirationDateTime": "2022-02-19T19:03:21Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js deleted file mode 100644 index f58e84554585..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js +++ /dev/null @@ -1,85 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d39ab98c609122d2db1445b5b3b136d7"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2', - 'x-envoy-upstream-service-time', - '171', - 'apim-request-id', - '34de6383-ad4b-4f44-8140-2aa7abe7cd9b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2') - .query(true) - .reply(200, {"jobId":"b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2","lastUpdateDateTime":"2021-10-23T00:43:03Z","createdDateTime":"2021-10-23T00:43:03Z","expirationDateTime":"2021-10-24T00:43:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'de32b046-e6b3-4f55-892a-dfbac781cced', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2') - .query(true) - .reply(200, {"jobId":"b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2","lastUpdateDateTime":"2021-10-23T00:43:03Z","createdDateTime":"2021-10-23T00:43:03Z","expirationDateTime":"2021-10-24T00:43:03Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '11', - 'apim-request-id', - '1d202b7b-10b2-4f78-bc00-b2228c67fc74', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2') - .query(true) - .reply(200, {"jobId":"b5a0acc0-a4f6-4048-a8cd-c7ba4862bcf2","lastUpdateDateTime":"2021-10-23T00:43:04Z","createdDateTime":"2021-10-23T00:43:03Z","expirationDateTime":"2021-10-24T00:43:03Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '111', - 'apim-request-id', - '911c1231-20bf-4228-ac79-0b31c7b1e05e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:43:05 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json new file mode 100644 index 000000000000..9d180304a588 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json @@ -0,0 +1,521 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "184", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a33f87c3-bb98-4f9f-b5e3-73e5a52a6ae1" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Patient does not suffer from high blood pressure.", + "language": "en" + }, + { + "id": "2", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b1cebf1f-325e-4590-bbcc-0e892618e9a9", + "Date": "Fri, 18 Feb 2022 19:46:27 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e125858d-3de1-48d9-9da4-6cf768bc4f33", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "213" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e125858d-3de1-48d9-9da4-6cf768bc4f33?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "98e698a3-4691-47fc-8f23-7e8d30d33475" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06842697-0a17-4249-8463-af842d55d600", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "e125858d-3de1-48d9-9da4-6cf768bc4f33", + "lastUpdateDateTime": "2022-02-18T19:46:27Z", + "createdDateTime": "2022-02-18T19:46:27Z", + "expirationDateTime": "2022-02-19T19:46:27Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e125858d-3de1-48d9-9da4-6cf768bc4f33?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e41de60f-68fc-4f70-9a53-f3973c55e0a6" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ed1b62ac-5735-4d29-90e3-c983b3e415ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" + }, + "ResponseBody": { + "jobId": "e125858d-3de1-48d9-9da4-6cf768bc4f33", + "lastUpdateDateTime": "2022-02-18T19:46:27Z", + "createdDateTime": "2022-02-18T19:46:27Z", + "expirationDateTime": "2022-02-19T19:46:27Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/e125858d-3de1-48d9-9da4-6cf768bc4f33?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d2ef2615-1ed0-4fee-bf78-4673d38bd606" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bfd99518-cba4-4f09-a26b-5d0d3582022d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:46:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "204" + }, + "ResponseBody": { + "jobId": "e125858d-3de1-48d9-9da4-6cf768bc4f33", + "lastUpdateDateTime": "2022-02-18T19:46:27Z", + "createdDateTime": "2022-02-18T19:46:27Z", + "expirationDateTime": "2022-02-19T19:46:27Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 29, + "length": 19, + "text": "high blood pressure", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "assertion": { + "certainty": "negative" + }, + "name": "Hypertensive disease", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020538" + }, + { + "dataSource": "AOD", + "id": "0000023317" + }, + { + "dataSource": "BI", + "id": "BI00001" + }, + { + "dataSource": "CCPSS", + "id": "1017493" + }, + { + "dataSource": "CCS", + "id": "7.1" + }, + { + "dataSource": "CHV", + "id": "0000015800" + }, + { + "dataSource": "COSTAR", + "id": "397" + }, + { + "dataSource": "CSP", + "id": "0571-5243" + }, + { + "dataSource": "CST", + "id": "HYPERTENS" + }, + { + "dataSource": "DXP", + "id": "U002034" + }, + { + "dataSource": "HPO", + "id": "HP:0000822" + }, + { + "dataSource": "ICD10", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10AM", + "id": "I10-I15.9" + }, + { + "dataSource": "ICD10CM", + "id": "I10" + }, + { + "dataSource": "ICD9CM", + "id": "997.91" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU035456" + }, + { + "dataSource": "ICPC2P", + "id": "K85004" + }, + { + "dataSource": "LCH", + "id": "U002317" + }, + { + "dataSource": "LCH_NW", + "id": "sh85063723" + }, + { + "dataSource": "LNC", + "id": "LA14293-7" + }, + { + "dataSource": "MDR", + "id": "10020772" + }, + { + "dataSource": "MEDCIN", + "id": "33288" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "34" + }, + { + "dataSource": "MSH", + "id": "D006973" + }, + { + "dataSource": "MTH", + "id": "005" + }, + { + "dataSource": "MTHICD9", + "id": "997.91" + }, + { + "dataSource": "NANDA-I", + "id": "00905" + }, + { + "dataSource": "NCI", + "id": "C3117" + }, + { + "dataSource": "NCI_CPTAC", + "id": "C3117" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E13785" + }, + { + "dataSource": "NCI_CTRP", + "id": "C3117" + }, + { + "dataSource": "NCI_FDA", + "id": "1908" + }, + { + "dataSource": "NCI_GDC", + "id": "C3117" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000458091" + }, + { + "dataSource": "NCI_NICHD", + "id": "C3117" + }, + { + "dataSource": "NOC", + "id": "060808" + }, + { + "dataSource": "OMIM", + "id": "MTHU002068" + }, + { + "dataSource": "PCDS", + "id": "PRB_11000.06" + }, + { + "dataSource": "PDQ", + "id": "CDR0000686951" + }, + { + "dataSource": "PSY", + "id": "23830" + }, + { + "dataSource": "RCD", + "id": "XE0Ub" + }, + { + "dataSource": "SNM", + "id": "F-70700" + }, + { + "dataSource": "SNMI", + "id": "D3-02000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "38341003" + }, + { + "dataSource": "WHO", + "id": "0210" + } + ] + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/1/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/1/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js deleted file mode 100644 index 3030946614b4..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "2d6dc378f178664fbb5e419f53f37dd5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2cc9827f-2f2f-4618-851b-32ded368c22d', - 'x-envoy-upstream-service-time', - '626', - 'apim-request-id', - '4877db36-1120-47eb-8f96-d04fc28baf6d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2cc9827f-2f2f-4618-851b-32ded368c22d') - .query(true) - .reply(200, {"jobId":"2cc9827f-2f2f-4618-851b-32ded368c22d","lastUpdateDateTime":"2021-10-23T00:42:35Z","createdDateTime":"2021-10-23T00:42:35Z","expirationDateTime":"2021-10-24T00:42:35Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - 'd826ebaf-6324-4d4d-85a6-61e97fade55a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2cc9827f-2f2f-4618-851b-32ded368c22d') - .query(true) - .reply(200, {"jobId":"2cc9827f-2f2f-4618-851b-32ded368c22d","lastUpdateDateTime":"2021-10-23T00:42:35Z","createdDateTime":"2021-10-23T00:42:35Z","expirationDateTime":"2021-10-24T00:42:35Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'e2a5a15d-6433-4576-b20e-1de447a9b297', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2cc9827f-2f2f-4618-851b-32ded368c22d') - .query(true) - .reply(200, {"jobId":"2cc9827f-2f2f-4618-851b-32ded368c22d","lastUpdateDateTime":"2021-10-23T00:42:36Z","createdDateTime":"2021-10-23T00:42:35Z","expirationDateTime":"2021-10-24T00:42:35Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '172', - 'apim-request-id', - '27f5a868-408a-4f0b-ab39-8143219607a7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2cc9827f-2f2f-4618-851b-32ded368c22d') - .query(true) - .reply(200, {"jobId":"2cc9827f-2f2f-4618-851b-32ded368c22d","lastUpdateDateTime":"2021-10-23T00:42:36Z","createdDateTime":"2021-10-23T00:42:35Z","expirationDateTime":"2021-10-24T00:42:35Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '102', - 'apim-request-id', - 'e1f5d73a-8734-43cd-85e7-ff6bd3e28ba0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:37 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json new file mode 100644 index 000000000000..0c14c8597338 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json @@ -0,0 +1,271 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "139", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000268-0000000000000536-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "861b9c82-da1e-493f-a90c-f4a166e58f02" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "one" + }, + { + "id": "2", + "text": "two" + }, + { + "id": "3", + "text": "three" + }, + { + "id": "4", + "text": "four" + }, + { + "id": "5", + "text": "five" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "8a33b183-a41c-445e-8fe3-7792f0b99e00", + "Date": "Fri, 18 Feb 2022 19:02:56 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f1987ce-d4a3-4456-b7e2-1f31a03469b0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f1987ce-d4a3-4456-b7e2-1f31a03469b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000269-0000000000000538-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e7909029-982f-4415-bbb9-859c7664461d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a3acf1f-c3f1-4e1c-ba5a-9d77fd7088c7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "6f1987ce-d4a3-4456-b7e2-1f31a03469b0", + "lastUpdateDateTime": "2022-02-18T19:02:56Z", + "createdDateTime": "2022-02-18T19:02:56Z", + "expirationDateTime": "2022-02-19T19:02:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f1987ce-d4a3-4456-b7e2-1f31a03469b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000270-0000000000000540-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8fa2ba0a-ec17-4ed6-8866-db8d54a68934" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfc1b5bc-78e6-44a4-b382-e6b1b812d127", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "6f1987ce-d4a3-4456-b7e2-1f31a03469b0", + "lastUpdateDateTime": "2022-02-18T19:02:56Z", + "createdDateTime": "2022-02-18T19:02:56Z", + "expirationDateTime": "2022-02-19T19:02:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f1987ce-d4a3-4456-b7e2-1f31a03469b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000271-0000000000000542-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9bd39f5e-58dd-42f6-861f-4a2ebc053788" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8295e73a-60ee-4889-b390-32e01a78f700", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "jobId": "6f1987ce-d4a3-4456-b7e2-1f31a03469b0", + "lastUpdateDateTime": "2022-02-18T19:02:57Z", + "createdDateTime": "2022-02-18T19:02:56Z", + "expirationDateTime": "2022-02-19T19:02:56Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/6f1987ce-d4a3-4456-b7e2-1f31a03469b0?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000272-0000000000000544-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "08112091-6e7d-4dab-9f14-0e44b81151fb" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ccbeb17-9844-4c82-8fee-3da0facade74", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "239" + }, + "ResponseBody": { + "jobId": "6f1987ce-d4a3-4456-b7e2-1f31a03469b0", + "lastUpdateDateTime": "2022-02-18T19:02:57Z", + "createdDateTime": "2022-02-18T19:02:56Z", + "expirationDateTime": "2022-02-19T19:02:56Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "4", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "5", + "entities": [ + { + "offset": 0, + "length": 4, + "text": "five", + "category": "Dosage", + "confidenceScore": 0.58 + } + ], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js deleted file mode 100644 index a04904e4c9a5..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "4234bf615139a007710624ac07ffab34"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3499d49b-6523-4664-85b0-f1ab3103ce2d', - 'x-envoy-upstream-service-time', - '243', - 'apim-request-id', - '49cfda48-fb89-4ad4-a509-2ab470b24e7c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3499d49b-6523-4664-85b0-f1ab3103ce2d') - .query(true) - .reply(200, {"jobId":"3499d49b-6523-4664-85b0-f1ab3103ce2d","lastUpdateDateTime":"2021-10-23T00:42:38Z","createdDateTime":"2021-10-23T00:42:38Z","expirationDateTime":"2021-10-24T00:42:38Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '772ff8a8-8aa8-4b20-95f6-9d0e9c33aaa8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3499d49b-6523-4664-85b0-f1ab3103ce2d') - .query(true) - .reply(200, {"jobId":"3499d49b-6523-4664-85b0-f1ab3103ce2d","lastUpdateDateTime":"2021-10-23T00:42:38Z","createdDateTime":"2021-10-23T00:42:38Z","expirationDateTime":"2021-10-24T00:42:38Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'f2279368-305a-4e2e-8e70-3f81219fec28', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3499d49b-6523-4664-85b0-f1ab3103ce2d') - .query(true) - .reply(200, {"jobId":"3499d49b-6523-4664-85b0-f1ab3103ce2d","lastUpdateDateTime":"2021-10-23T00:42:39Z","createdDateTime":"2021-10-23T00:42:38Z","expirationDateTime":"2021-10-24T00:42:38Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '98', - 'apim-request-id', - '102b07f1-2211-45ad-8cca-45f3de98c7dd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3499d49b-6523-4664-85b0-f1ab3103ce2d') - .query(true) - .reply(200, {"jobId":"3499d49b-6523-4664-85b0-f1ab3103ce2d","lastUpdateDateTime":"2021-10-23T00:42:39Z","createdDateTime":"2021-10-23T00:42:38Z","expirationDateTime":"2021-10-24T00:42:38Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '112', - 'apim-request-id', - 'b9e4cc70-64ab-4775-aee8-33f6a70fbdce', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:40 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json new file mode 100644 index 000000000000..25ec5cf80da3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json @@ -0,0 +1,267 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000273-0000000000000546-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e6a9a913-814e-4a3f-b60d-a30e6d32ceff" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b6b6a6a1-4dd5-4b14-899f-317ab136e3ca", + "Date": "Fri, 18 Feb 2022 19:02:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/10522fda-9791-4c39-b5e2-b310f27f9aee", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "208" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/10522fda-9791-4c39-b5e2-b310f27f9aee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000274-0000000000000548-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5aa3e377-08ad-4d46-99b1-0a2d670631ae" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fdf4f02a-7a47-4501-ab39-2cc9f78f2974", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "10522fda-9791-4c39-b5e2-b310f27f9aee", + "lastUpdateDateTime": "2022-02-18T19:03:00Z", + "createdDateTime": "2022-02-18T19:03:00Z", + "expirationDateTime": "2022-02-19T19:03:00Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/10522fda-9791-4c39-b5e2-b310f27f9aee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000275-0000000000000550-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3ffaa307-7ff7-4b1f-86f3-451ff34291b4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ddc02489-8210-4010-9331-798a01c3a828", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "10522fda-9791-4c39-b5e2-b310f27f9aee", + "lastUpdateDateTime": "2022-02-18T19:03:00Z", + "createdDateTime": "2022-02-18T19:03:00Z", + "expirationDateTime": "2022-02-19T19:03:00Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/10522fda-9791-4c39-b5e2-b310f27f9aee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000276-0000000000000552-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "3e251b60-9f9d-4aa6-9825-d41bd8e7cdb2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e937fee2-99fd-488d-b595-785b28b243fd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" + }, + "ResponseBody": { + "jobId": "10522fda-9791-4c39-b5e2-b310f27f9aee", + "lastUpdateDateTime": "2022-02-18T19:03:01Z", + "createdDateTime": "2022-02-18T19:03:00Z", + "expirationDateTime": "2022-02-19T19:03:00Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/10522fda-9791-4c39-b5e2-b310f27f9aee?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000277-0000000000000554-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4f65a90c-38b5-4aac-a30c-342c786c0b4c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8dc821e9-d0c4-492e-9378-15e2ad600aa2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" + }, + "ResponseBody": { + "jobId": "10522fda-9791-4c39-b5e2-b310f27f9aee", + "lastUpdateDateTime": "2022-02-18T19:03:01Z", + "createdDateTime": "2022-02-18T19:03:00Z", + "expirationDateTime": "2022-02-19T19:03:00Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "56", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "19", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [ + { + "id": "22", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js deleted file mode 100644 index b763ae33ffba..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f016ed25d69cac1c7432466f1a7578fc"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"1","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"2","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"3","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"4","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"5","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"6","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"7","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"8","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"9","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"10","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"11","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"12","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"13","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"14","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"15","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"16","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"17","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"18","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"19","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"20","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"21","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"22","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"23","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"24","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"25","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"26","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"27","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"28","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"29","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"30","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"31","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"32","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"33","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"34","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"35","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"36","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"37","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"38","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"39","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"40","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"41","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"42","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"43","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"44","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"45","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"46","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"47","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"48","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"49","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"50","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"51","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"52","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"53","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"54","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"55","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"56","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"57","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"58","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"59","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"60","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"61","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"62","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"63","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"64","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"65","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"66","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"67","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"68","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"69","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"70","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"71","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"72","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"73","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"74","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"75","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"76","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"77","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"78","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"79","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"80","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"81","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"82","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"83","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"84","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"85","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"86","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"87","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"88","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"89","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"90","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"91","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"92","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"93","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"94","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"95","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"96","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"97","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"98","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"99","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"100","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"101","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"102","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"103","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"104","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"105","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"106","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"107","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"108","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"109","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"110","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"111","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"112","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"113","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"114","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"115","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"116","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"117","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"118","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"119","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"120","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"121","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"122","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"123","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"124","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"125","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"126","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"127","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"128","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"129","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"130","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"131","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"132","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"133","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"134","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"135","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"136","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"137","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"138","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"139","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"140","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"141","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"142","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"143","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"144","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"145","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"146","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"147","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"148","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"149","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"150","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"151","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"152","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"153","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"154","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"155","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"156","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"157","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"158","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"159","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"160","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"161","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"162","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"163","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"164","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"165","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"166","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"167","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"168","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"169","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"170","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"171","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"172","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"173","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"174","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"175","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"176","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"177","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"178","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"179","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"180","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"181","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"182","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"183","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"184","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"185","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"186","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"187","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"188","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"189","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"190","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"191","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"192","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"193","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"194","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"195","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"196","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"197","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"198","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"199","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"200","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"201","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"202","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"203","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"204","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"205","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"206","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"207","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"208","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"209","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"210","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"211","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"212","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"213","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"214","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"215","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"216","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"217","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"218","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"219","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"220","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"221","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"222","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"223","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"224","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"225","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"226","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"227","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"228","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"229","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"230","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"231","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"232","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"233","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"234","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"235","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"236","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"237","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"238","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"239","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"240","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"241","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"242","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"243","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"244","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"245","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"246","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"247","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"248","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"249","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"250","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"251","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"252","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"253","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"254","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"255","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"256","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"257","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"258","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"259","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"260","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"261","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"262","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"263","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"264","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"265","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"266","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"267","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"268","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"269","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"270","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"271","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"272","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"273","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"274","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"275","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"276","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"277","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"278","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"279","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"280","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"281","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"282","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"283","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"284","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"285","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"286","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"287","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"288","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"289","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"290","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"291","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"292","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"293","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"294","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"295","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"296","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"297","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"298","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"299","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"300","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"301","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"302","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"303","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"304","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"305","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"306","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"307","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"308","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"309","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"310","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"311","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"312","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"313","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"314","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"315","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"316","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"317","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"318","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"319","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"320","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"321","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"322","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"323","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"324","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"325","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"326","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"327","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"328","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"329","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"330","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"331","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"332","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"333","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"334","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"335","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"336","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"337","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"338","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"339","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"340","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"341","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"342","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"343","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"344","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"345","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"346","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"347","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"348","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"349","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"350","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"351","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"352","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"353","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"354","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"355","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"356","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"357","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"358","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"359","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"360","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"361","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"362","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"363","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"364","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"365","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"366","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"367","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"368","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"369","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"370","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"371","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"372","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"373","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"374","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"375","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"376","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"377","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"378","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"379","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"380","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"381","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"382","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"383","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"384","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"385","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"386","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"387","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"388","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"389","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"390","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"391","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"392","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"393","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"394","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"395","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"396","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"397","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"398","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"399","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"400","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"401","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"402","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"403","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"404","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"405","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"406","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"407","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"408","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"409","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"410","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"411","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"412","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"413","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"414","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"415","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"416","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"417","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"418","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"419","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"420","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"421","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"422","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"423","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"424","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"425","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"426","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"427","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"428","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"429","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"430","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"431","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"432","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"433","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"434","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"435","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"436","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"437","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"438","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"439","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"440","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"441","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"442","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"443","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"444","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"445","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"446","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"447","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"448","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"449","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"450","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"451","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"452","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"453","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"454","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"455","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"456","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"457","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"458","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"459","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"460","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"461","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"462","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"463","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"464","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"465","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"466","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"467","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"468","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"469","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"470","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"471","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"472","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"473","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"474","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"475","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"476","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"477","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"478","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"479","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"480","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"481","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"482","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"483","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"484","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"485","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"486","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"487","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"488","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"489","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"490","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"491","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"492","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"493","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"494","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"495","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"496","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"497","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"498","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"499","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"}]}) - .query(true) - .reply(413, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Request Payload sent is too large to be processed. Limit request size to: 524288"}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '23', - 'apim-request-id', - '0f7bef26-51f9-4d1b-8d6a-ddb2ebcb7c6e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:30 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json new file mode 100644 index 000000000000..733ba322e1a8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json @@ -0,0 +1,2544 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "710405", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000262-0000000000000524-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "962173fc-f238-4ee6-9d0d-f8222da5a3df" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "1", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "2", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "3", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "4", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "5", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "6", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "7", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "8", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "9", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "10", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "11", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "12", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "13", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "14", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "15", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "16", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "17", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "18", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "19", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "20", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "21", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "22", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "23", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "24", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "25", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "26", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "27", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "28", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "29", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "30", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "31", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "32", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "33", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "34", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "35", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "36", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "37", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "38", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "39", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "40", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "41", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "42", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "43", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "44", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "45", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "46", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "47", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "48", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "49", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "50", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "51", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "52", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "53", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "54", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "55", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "56", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "57", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "58", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "59", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "60", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "61", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "62", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "63", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "64", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "65", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "66", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "67", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "68", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "69", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "70", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "71", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "72", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "73", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "74", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "75", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "76", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "77", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "78", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "79", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "80", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "81", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "82", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "83", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "84", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "85", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "86", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "87", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "88", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "89", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "90", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "91", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "92", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "93", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "94", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "95", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "96", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "97", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "98", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "99", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "100", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "101", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "102", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "103", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "104", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "105", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "106", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "107", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "108", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "109", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "110", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "111", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "112", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "113", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "114", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "115", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "116", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "117", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "118", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "119", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "120", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "121", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "122", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "123", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "124", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "125", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "126", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "127", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "128", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "129", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "130", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "131", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "132", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "133", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "134", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "135", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "136", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "137", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "138", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "139", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "140", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "141", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "142", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "143", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "144", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "145", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "146", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "147", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "148", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "149", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "150", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "151", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "152", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "153", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "154", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "155", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "156", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "157", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "158", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "159", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "160", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "161", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "162", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "163", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "164", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "165", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "166", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "167", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "168", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "169", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "170", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "171", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "172", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "173", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "174", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "175", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "176", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "177", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "178", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "179", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "180", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "181", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "182", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "183", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "184", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "185", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "186", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "187", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "188", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "189", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "190", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "191", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "192", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "193", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "194", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "195", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "196", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "197", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "198", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "199", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "200", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "201", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "202", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "203", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "204", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "205", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "206", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "207", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "208", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "209", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "210", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "211", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "212", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "213", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "214", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "215", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "216", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "217", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "218", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "219", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "220", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "221", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "222", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "223", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "224", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "225", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "226", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "227", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "228", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "229", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "230", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "231", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "232", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "233", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "234", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "235", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "236", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "237", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "238", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "239", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "240", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "241", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "242", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "243", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "244", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "245", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "246", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "247", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "248", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "249", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "250", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "251", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "252", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "253", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "254", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "255", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "256", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "257", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "258", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "259", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "260", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "261", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "262", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "263", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "264", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "265", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "266", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "267", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "268", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "269", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "270", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "271", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "272", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "273", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "274", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "275", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "276", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "277", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "278", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "279", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "280", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "281", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "282", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "283", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "284", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "285", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "286", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "287", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "288", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "289", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "290", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "291", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "292", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "293", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "294", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "295", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "296", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "297", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "298", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "299", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "300", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "301", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "302", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "303", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "304", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "305", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "306", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "307", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "308", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "309", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "310", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "311", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "312", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "313", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "314", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "315", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "316", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "317", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "318", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "319", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "320", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "321", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "322", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "323", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "324", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "325", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "326", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "327", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "328", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "329", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "330", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "331", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "332", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "333", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "334", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "335", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "336", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "337", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "338", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "339", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "340", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "341", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "342", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "343", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "344", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "345", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "346", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "347", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "348", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "349", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "350", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "351", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "352", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "353", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "354", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "355", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "356", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "357", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "358", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "359", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "360", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "361", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "362", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "363", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "364", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "365", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "366", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "367", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "368", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "369", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "370", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "371", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "372", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "373", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "374", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "375", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "376", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "377", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "378", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "379", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "380", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "381", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "382", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "383", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "384", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "385", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "386", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "387", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "388", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "389", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "390", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "391", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "392", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "393", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "394", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "395", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "396", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "397", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "398", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "399", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "400", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "401", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "402", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "403", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "404", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "405", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "406", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "407", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "408", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "409", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "410", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "411", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "412", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "413", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "414", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "415", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "416", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "417", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "418", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "419", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "420", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "421", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "422", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "423", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "424", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "425", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "426", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "427", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "428", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "429", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "430", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "431", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "432", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "433", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "434", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "435", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "436", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "437", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "438", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "439", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "440", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "441", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "442", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "443", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "444", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "445", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "446", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "447", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "448", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "449", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "450", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "451", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "452", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "453", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "454", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "455", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "456", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "457", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "458", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "459", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "460", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "461", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "462", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "463", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "464", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "465", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "466", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "467", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "468", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "469", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "470", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "471", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "472", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "473", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "474", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "475", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "476", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "477", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "478", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "479", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "480", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "481", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "482", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "483", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "484", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "485", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "486", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "487", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "488", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "489", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "490", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "491", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "492", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "493", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "494", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "495", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "496", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "497", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "498", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + }, + { + "id": "499", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient\u0027s increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.", + "language": "en" + } + ] + }, + "StatusCode": 413, + "ResponseHeaders": { + "apim-request-id": "71602f95-15f3-4e33-bdf0-5bcee643cedb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Request Payload sent is too large to be processed. Limit request size to: 524288" + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js deleted file mode 100644 index 286ca8b351be..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js +++ /dev/null @@ -1,85 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1e575b94347ebbe18d25ab65a2be1654"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/79780370-a5df-4b55-9acc-c6d5228777da', - 'x-envoy-upstream-service-time', - '244', - 'apim-request-id', - '43033769-e11a-466c-8d12-21cdac63cb6e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/79780370-a5df-4b55-9acc-c6d5228777da') - .query(true) - .reply(200, {"jobId":"79780370-a5df-4b55-9acc-c6d5228777da","lastUpdateDateTime":"2021-10-23T00:42:41Z","createdDateTime":"2021-10-23T00:42:40Z","expirationDateTime":"2021-10-24T00:42:40Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '60d805b3-8ce4-4510-bdee-182b49c7b189', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/79780370-a5df-4b55-9acc-c6d5228777da') - .query(true) - .reply(200, {"jobId":"79780370-a5df-4b55-9acc-c6d5228777da","lastUpdateDateTime":"2021-10-23T00:42:41Z","createdDateTime":"2021-10-23T00:42:40Z","expirationDateTime":"2021-10-24T00:42:40Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '13', - 'apim-request-id', - 'd2ac1d0a-c0fc-4be4-98e8-9b52f3c20b7a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/79780370-a5df-4b55-9acc-c6d5228777da') - .query(true) - .reply(200, {"jobId":"79780370-a5df-4b55-9acc-c6d5228777da","lastUpdateDateTime":"2021-10-23T00:42:42Z","createdDateTime":"2021-10-23T00:42:40Z","expirationDateTime":"2021-10-24T00:42:40Z","status":"succeeded","errors":[],"results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"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":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '112', - 'apim-request-id', - '1e9eae95-5677-488d-8fc4-a2de3d572213', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:42 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json new file mode 100644 index 000000000000..613baa0569d1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json @@ -0,0 +1,215 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?model-version=latest\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "131", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000278-0000000000000556-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a4953f8c-0de4-4ca5-81aa-2ad2f002975f" + }, + "RequestBody": { + "documents": [ + { + "id": "56", + "text": ":)" + }, + { + "id": "0", + "text": ":(" + }, + { + "id": "22", + "text": "" + }, + { + "id": "19", + "text": ":P" + }, + { + "id": "1", + "text": ":D" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "b2779f16-88eb-43f3-9b63-69979e348684", + "Date": "Fri, 18 Feb 2022 19:03:03 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/a6c3a3da-8224-4ca1-b5e1-13cc98e25576", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/a6c3a3da-8224-4ca1-b5e1-13cc98e25576?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000279-0000000000000558-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a79f79f7-2efa-4057-bc9a-bf40956c8c8a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2d5b7581-eec8-47eb-9f2d-485c723ecef4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a6c3a3da-8224-4ca1-b5e1-13cc98e25576", + "lastUpdateDateTime": "2022-02-18T19:03:03Z", + "createdDateTime": "2022-02-18T19:03:03Z", + "expirationDateTime": "2022-02-19T19:03:03Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/a6c3a3da-8224-4ca1-b5e1-13cc98e25576?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000280-0000000000000560-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0d2fb6ec-6beb-4268-94df-980a1d3711a4" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "766d0afe-63f3-4593-9fe2-28f0b01f6f56", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "a6c3a3da-8224-4ca1-b5e1-13cc98e25576", + "lastUpdateDateTime": "2022-02-18T19:03:03Z", + "createdDateTime": "2022-02-18T19:03:03Z", + "expirationDateTime": "2022-02-19T19:03:03Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/a6c3a3da-8224-4ca1-b5e1-13cc98e25576?showStats=true\u0026$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000281-0000000000000562-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c7f8d3b7-d6e1-448e-805b-be06ba3c0ea2" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42267b8a-5c36-415d-8255-b99adb2da6cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": { + "jobId": "a6c3a3da-8224-4ca1-b5e1-13cc98e25576", + "lastUpdateDateTime": "2022-02-18T19:03:04Z", + "createdDateTime": "2022-02-18T19:03:03Z", + "expirationDateTime": "2022-02-19T19:03:03Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 5, + "validDocumentsCount": 4, + "erroneousDocumentsCount": 1, + "transactionsCount": 4 + }, + "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": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js deleted file mode 100644 index 42849189010c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "bab30c0c76dbf2a445ffbcb16eaccc29"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/4e7df7d8-70c3-4166-b0ce-0559ad8600c6', - 'x-envoy-upstream-service-time', - '229', - 'apim-request-id', - '15535af3-09c3-49d2-a67a-6c68e7ae3482', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4e7df7d8-70c3-4166-b0ce-0559ad8600c6') - .query(true) - .reply(200, {"jobId":"4e7df7d8-70c3-4166-b0ce-0559ad8600c6","lastUpdateDateTime":"2021-10-23T00:42:01Z","createdDateTime":"2021-10-23T00:42:00Z","expirationDateTime":"2021-10-24T00:42:00Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '328e0c66-f427-46ff-8f76-bf1f2c790e35', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4e7df7d8-70c3-4166-b0ce-0559ad8600c6') - .query(true) - .reply(200, {"jobId":"4e7df7d8-70c3-4166-b0ce-0559ad8600c6","lastUpdateDateTime":"2021-10-23T00:42:01Z","createdDateTime":"2021-10-23T00:42:00Z","expirationDateTime":"2021-10-24T00:42:00Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '14', - 'apim-request-id', - '6b99d36b-fbc7-45ed-958d-af142df5cc45', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4e7df7d8-70c3-4166-b0ce-0559ad8600c6') - .query(true) - .reply(200, {"jobId":"4e7df7d8-70c3-4166-b0ce-0559ad8600c6","lastUpdateDateTime":"2021-10-23T00:42:01Z","createdDateTime":"2021-10-23T00:42:00Z","expirationDateTime":"2021-10-24T00:42:00Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '79', - 'apim-request-id', - 'ab016900-a900-4e80-b655-1cf45f3e2b9d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/4e7df7d8-70c3-4166-b0ce-0559ad8600c6') - .query(true) - .reply(200, {"jobId":"4e7df7d8-70c3-4166-b0ce-0559ad8600c6","lastUpdateDateTime":"2021-10-23T00:42:01Z","createdDateTime":"2021-10-23T00:42:00Z","expirationDateTime":"2021-10-24T00:42:00Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","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"}}}],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '95', - 'apim-request-id', - '7a61b39f-3324-42e5-bb0c-995bfc94879f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:02 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json new file mode 100644 index 000000000000..66884b622172 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json @@ -0,0 +1,592 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "226", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000251-0000000000000502-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cbe92142-7f91-4a21-82a0-b43ad91e9fc1" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Patient does not suffer from high blood pressure.", + "language": "english" + }, + { + "id": "3", + "text": "Prescribed 100mg ibuprofen, taken twice daily.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1f4df6d1-e12a-4617-bed2-00963b850a9d", + "Date": "Fri, 18 Feb 2022 19:02:45 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/499d45ea-d038-4925-a22c-316ec72fec5c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/499d45ea-d038-4925-a22c-316ec72fec5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000252-0000000000000504-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "c834484b-4da3-4aa4-8e28-5b733ec27ec8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "337b491f-1200-4bf6-a578-d89657bab921", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "499d45ea-d038-4925-a22c-316ec72fec5c", + "lastUpdateDateTime": "2022-02-18T19:02:45Z", + "createdDateTime": "2022-02-18T19:02:45Z", + "expirationDateTime": "2022-02-19T19:02:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/499d45ea-d038-4925-a22c-316ec72fec5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000253-0000000000000506-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "214163a3-eb7a-4223-bfd7-d6b2adc81723" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "130bdf59-48c2-457b-bc33-359720739ed3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "499d45ea-d038-4925-a22c-316ec72fec5c", + "lastUpdateDateTime": "2022-02-18T19:02:45Z", + "createdDateTime": "2022-02-18T19:02:45Z", + "expirationDateTime": "2022-02-19T19:02:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/499d45ea-d038-4925-a22c-316ec72fec5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000254-0000000000000508-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "1eea5e62-0398-4d61-afbb-298110edf4dd" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c90210d-478a-4dd8-aa46-d20d4d7c1165", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "499d45ea-d038-4925-a22c-316ec72fec5c", + "lastUpdateDateTime": "2022-02-18T19:02:46Z", + "createdDateTime": "2022-02-18T19:02:45Z", + "expirationDateTime": "2022-02-19T19:02:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/499d45ea-d038-4925-a22c-316ec72fec5c?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000255-0000000000000510-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "397c0376-1477-4e8f-97b1-94b2826e9a4d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e99a45b-642b-4ad9-acf1-9a9b591956a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "499d45ea-d038-4925-a22c-316ec72fec5c", + "lastUpdateDateTime": "2022-02-18T19:02:46Z", + "createdDateTime": "2022-02-18T19:02:45Z", + "expirationDateTime": "2022-02-19T19:02:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "3", + "entities": [ + { + "offset": 11, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0 + }, + { + "offset": 17, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "name": "ibuprofen", + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 34, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0 + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/0", + "role": "Dosage" + }, + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + } + ] + }, + { + "relationType": "FrequencyOfMedication", + "entities": [ + { + "ref": "#/results/documents/0/entities/1", + "role": "Medication" + }, + { + "ref": "#/results/documents/0/entities/2", + "role": "Frequency" + } + ] + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + }, + { + "id": "2", + "error": { + "code": "InvalidArgument", + "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" + } + } + } + ], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js deleted file mode 100644 index 24699b33bf70..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "79c920925d843070f1cf62ff215ca936"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 10 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '8c2a3631-2274-42f3-964a-98b8b2fc82e0', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:29 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json new file mode 100644 index 000000000000..5b84fb7f4032 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json @@ -0,0 +1,99 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "544", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000261-0000000000000522-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "9e983ae3-1523-4c7a-a22f-156c475d0cd5" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "random text", + "language": "en" + }, + { + "id": "1", + "text": "random text", + "language": "en" + }, + { + "id": "2", + "text": "random text", + "language": "en" + }, + { + "id": "3", + "text": "random text", + "language": "en" + }, + { + "id": "4", + "text": "random text", + "language": "en" + }, + { + "id": "5", + "text": "random text", + "language": "en" + }, + { + "id": "6", + "text": "random text", + "language": "en" + }, + { + "id": "7", + "text": "random text", + "language": "en" + }, + { + "id": "8", + "text": "random text", + "language": "en" + }, + { + "id": "9", + "text": "random text", + "language": "en" + }, + { + "id": "10", + "text": "random text", + "language": "en" + } + ] + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "cadde603-b138-4113-97b1-d3548c1f36a3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:02:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "error": { + "code": "InvalidRequest", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocumentBatch", + "message": "Batch request contains too many records. Max 10 records are permitted." + } + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js deleted file mode 100644 index d48b2d92962b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a96bcc371f39bc4524aa6f00daa000fe"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/05a5bfbc-ed6d-4938-8869-d54c05b07c7c', - 'x-envoy-upstream-service-time', - '358', - 'apim-request-id', - '5ae109be-cb1a-4b9a-937e-285677912b1e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/05a5bfbc-ed6d-4938-8869-d54c05b07c7c') - .query(true) - .reply(200, {"jobId":"05a5bfbc-ed6d-4938-8869-d54c05b07c7c","lastUpdateDateTime":"2021-10-23T00:42:46Z","createdDateTime":"2021-10-23T00:42:46Z","expirationDateTime":"2021-10-24T00:42:46Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'a5ea2863-7f3a-43e6-8c40-0da8851199cd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/05a5bfbc-ed6d-4938-8869-d54c05b07c7c') - .query(true) - .reply(200, {"jobId":"05a5bfbc-ed6d-4938-8869-d54c05b07c7c","lastUpdateDateTime":"2021-10-23T00:42:46Z","createdDateTime":"2021-10-23T00:42:46Z","expirationDateTime":"2021-10-24T00:42:46Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '831e4159-7d60-49d6-874f-e3a36cd5dc46', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:46 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/05a5bfbc-ed6d-4938-8869-d54c05b07c7c') - .query(true) - .reply(200, {"jobId":"05a5bfbc-ed6d-4938-8869-d54c05b07c7c","lastUpdateDateTime":"2021-10-23T00:42:47Z","createdDateTime":"2021-10-23T00:42:46Z","expirationDateTime":"2021-10-24T00:42:46Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '113', - 'apim-request-id', - '9b538e5b-a368-4d7e-ad46-1864d25c3ec3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/05a5bfbc-ed6d-4938-8869-d54c05b07c7c') - .query(true) - .reply(200, {"jobId":"05a5bfbc-ed6d-4938-8869-d54c05b07c7c","lastUpdateDateTime":"2021-10-23T00:42:47Z","createdDateTime":"2021-10-23T00:42:46Z","expirationDateTime":"2021-10-24T00:42:46Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '74', - 'apim-request-id', - '62aaeabe-efeb-4023-a6d5-52e5fab9cf13', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:48 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json new file mode 100644 index 000000000000..764dedede176 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json @@ -0,0 +1,226 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000287-0000000000000574-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "b5ae0b50-9043-43af-89ce-d0c87d11f25f" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a39a7029-b560-4928-a2ef-2aa4c2d8107f", + "Date": "Fri, 18 Feb 2022 19:03:09 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000288-0000000000000576-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "e6cdce0b-e515-429f-a0b0-dbd73a1d154c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0cfd44f7-4b57-4395-9eaa-a18f629ae90b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "8" + }, + "ResponseBody": { + "jobId": "d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1", + "lastUpdateDateTime": "2022-02-18T19:03:10Z", + "createdDateTime": "2022-02-18T19:03:09Z", + "expirationDateTime": "2022-02-19T19:03:09Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000289-0000000000000578-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "8b1d3f39-b003-4084-aeb9-c8e3106ab7ad" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b405653-130d-4a70-b54d-8f2a27fd9763", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "9" + }, + "ResponseBody": { + "jobId": "d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1", + "lastUpdateDateTime": "2022-02-18T19:03:10Z", + "createdDateTime": "2022-02-18T19:03:09Z", + "expirationDateTime": "2022-02-19T19:03:09Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000290-0000000000000580-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "71bdf6ab-4525-4e13-8bab-12c0277544a5" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e5b0f0d7-63e3-434f-ab9a-f8f8efe8f2e2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "56" + }, + "ResponseBody": { + "jobId": "d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1", + "lastUpdateDateTime": "2022-02-18T19:03:10Z", + "createdDateTime": "2022-02-18T19:03:09Z", + "expirationDateTime": "2022-02-19T19:03:09Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000291-0000000000000582-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fbb260ee-f013-4214-a965-1dd6009ae7e1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6e1e60f9-5845-42c6-bb1f-0457c0bfbe15", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "55" + }, + "ResponseBody": { + "jobId": "d9c2715c-c1c8-4bc9-8b6f-0d38c33570d1", + "lastUpdateDateTime": "2022-02-18T19:03:10Z", + "createdDateTime": "2022-02-18T19:03:09Z", + "expirationDateTime": "2022-02-19T19:03:09Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js deleted file mode 100644 index 40d2d733a5bc..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7b424c93f75bfddb132b20861a2983df"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/2e3f077a-f4d5-404c-b41e-2dee558e0dbe', - 'x-envoy-upstream-service-time', - '321', - 'apim-request-id', - '29a40b6f-b004-44fd-8d7f-0f522649bff8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2e3f077a-f4d5-404c-b41e-2dee558e0dbe') - .query(true) - .reply(200, {"jobId":"2e3f077a-f4d5-404c-b41e-2dee558e0dbe","lastUpdateDateTime":"2021-10-23T00:42:49Z","createdDateTime":"2021-10-23T00:42:48Z","expirationDateTime":"2021-10-24T00:42:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '3f77e648-9f0a-48e4-8409-5df7f4d22e9b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2e3f077a-f4d5-404c-b41e-2dee558e0dbe') - .query(true) - .reply(200, {"jobId":"2e3f077a-f4d5-404c-b41e-2dee558e0dbe","lastUpdateDateTime":"2021-10-23T00:42:49Z","createdDateTime":"2021-10-23T00:42:48Z","expirationDateTime":"2021-10-24T00:42:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '36cb4d48-178d-49a0-92da-cbacd90ab622', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2e3f077a-f4d5-404c-b41e-2dee558e0dbe') - .query(true) - .reply(200, {"jobId":"2e3f077a-f4d5-404c-b41e-2dee558e0dbe","lastUpdateDateTime":"2021-10-23T00:42:50Z","createdDateTime":"2021-10-23T00:42:48Z","expirationDateTime":"2021-10-24T00:42:48Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '71', - 'apim-request-id', - '321f2ff7-d0f9-400f-8d93-eca2e41e2aa2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:50 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/2e3f077a-f4d5-404c-b41e-2dee558e0dbe') - .query(true) - .reply(200, {"jobId":"2e3f077a-f4d5-404c-b41e-2dee558e0dbe","lastUpdateDateTime":"2021-10-23T00:42:50Z","createdDateTime":"2021-10-23T00:42:48Z","expirationDateTime":"2021-10-24T00:42:48Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '80', - 'apim-request-id', - '8e01a937-0ed3-4195-9771-f4d43da2c1b2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:50 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json new file mode 100644 index 000000000000..7736b2dca52d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json @@ -0,0 +1,225 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "202", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000292-0000000000000584-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "4065cd49-366e-487a-b3b1-860587c40b97" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I will go to the park.", + "language": "" + }, + { + "id": "2", + "text": "I did not like the hotel we stayed at.", + "language": "" + }, + { + "id": "3", + "text": "The restaurant had really good food." + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "878a553c-671e-449c-a055-62c07c20bff5", + "Date": "Fri, 18 Feb 2022 19:03:12 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/230623b4-2b69-43b2-a30f-78a11a036a9b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/230623b4-2b69-43b2-a30f-78a11a036a9b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000293-0000000000000586-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a0efac9a-9de0-41e8-ba2c-374e1a165b1c" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac8baaf9-7e17-471f-9ecb-30f3f760868c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "230623b4-2b69-43b2-a30f-78a11a036a9b", + "lastUpdateDateTime": "2022-02-18T19:03:13Z", + "createdDateTime": "2022-02-18T19:03:13Z", + "expirationDateTime": "2022-02-19T19:03:13Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/230623b4-2b69-43b2-a30f-78a11a036a9b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000294-0000000000000588-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "a173dcfc-f2f2-4fc3-b9e5-8f4a5a6fc226" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c85aa702-6d86-4845-b79f-073ad82b91dc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "230623b4-2b69-43b2-a30f-78a11a036a9b", + "lastUpdateDateTime": "2022-02-18T19:03:13Z", + "createdDateTime": "2022-02-18T19:03:13Z", + "expirationDateTime": "2022-02-19T19:03:13Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/230623b4-2b69-43b2-a30f-78a11a036a9b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000295-0000000000000590-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "49cfc5e6-c416-498e-8b6d-7ed896a807c8" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1aefa16f-19db-4021-81a1-0bc219282826", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "255" + }, + "ResponseBody": { + "jobId": "230623b4-2b69-43b2-a30f-78a11a036a9b", + "lastUpdateDateTime": "2022-02-18T19:03:13Z", + "createdDateTime": "2022-02-18T19:03:13Z", + "expirationDateTime": "2022-02-19T19:03:13Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/230623b4-2b69-43b2-a30f-78a11a036a9b?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000296-0000000000000592-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "bfc1a33f-e83e-4271-a558-7f6a203147ad" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ace0fd2e-a66e-496f-bc59-a2fb5a221309", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "230623b4-2b69-43b2-a30f-78a11a036a9b", + "lastUpdateDateTime": "2022-02-18T19:03:13Z", + "createdDateTime": "2022-02-18T19:03:13Z", + "expirationDateTime": "2022-02-19T19:03:13Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js deleted file mode 100644 index 3f3d22810026..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d196642a2f9b21cd2d043bb992f60916"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/3f20185a-7c7b-492c-9cb0-82365247c879', - 'x-envoy-upstream-service-time', - '324', - 'apim-request-id', - '0b51abf2-2c15-4fd1-a971-171b2e16f6f8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3f20185a-7c7b-492c-9cb0-82365247c879') - .query(true) - .reply(200, {"jobId":"3f20185a-7c7b-492c-9cb0-82365247c879","lastUpdateDateTime":"2021-10-23T00:42:43Z","createdDateTime":"2021-10-23T00:42:43Z","expirationDateTime":"2021-10-24T00:42:43Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - 'ee074954-6860-4914-b33b-360c67d80268', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3f20185a-7c7b-492c-9cb0-82365247c879') - .query(true) - .reply(200, {"jobId":"3f20185a-7c7b-492c-9cb0-82365247c879","lastUpdateDateTime":"2021-10-23T00:42:43Z","createdDateTime":"2021-10-23T00:42:43Z","expirationDateTime":"2021-10-24T00:42:43Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '7999a0f1-ee63-4d5b-a1bb-877e229b1e89', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3f20185a-7c7b-492c-9cb0-82365247c879') - .query(true) - .reply(200, {"jobId":"3f20185a-7c7b-492c-9cb0-82365247c879","lastUpdateDateTime":"2021-10-23T00:42:44Z","createdDateTime":"2021-10-23T00:42:43Z","expirationDateTime":"2021-10-24T00:42:43Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '76', - 'apim-request-id', - 'ef5162e0-0a22-4184-9eba-cb479306d9ea', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/3f20185a-7c7b-492c-9cb0-82365247c879') - .query(true) - .reply(200, {"jobId":"3f20185a-7c7b-492c-9cb0-82365247c879","lastUpdateDateTime":"2021-10-23T00:42:44Z","createdDateTime":"2021-10-23T00:42:43Z","expirationDateTime":"2021-10-24T00:42:43Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '128', - 'apim-request-id', - '4252084f-c1e5-44b4-bbb4-fcf77323549e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:46 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json new file mode 100644 index 000000000000..74db42cd7443 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json @@ -0,0 +1,226 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "261", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000282-0000000000000564-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0b2f91ce-7be8-4016-b782-5945d00ec00c" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "This was the best day of my life.", + "language": "en" + }, + { + "id": "1", + "text": "I did not like the hotel we stayed at. It was too expensive.", + "language": "en" + }, + { + "id": "2", + "text": "The restaurant was not as good as I hoped.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1f8ddc0a-926f-4efa-9db2-40066dff9ae1", + "Date": "Fri, 18 Feb 2022 19:03:06 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8a4c12e3-1b93-4d52-970b-6db36b309655", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8a4c12e3-1b93-4d52-970b-6db36b309655?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000283-0000000000000566-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "55fb710f-1708-4a44-806e-c1ada753f190" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19fb625a-cd37-4d6e-8e5e-212ae2189357", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" + }, + "ResponseBody": { + "jobId": "8a4c12e3-1b93-4d52-970b-6db36b309655", + "lastUpdateDateTime": "2022-02-18T19:03:06Z", + "createdDateTime": "2022-02-18T19:03:06Z", + "expirationDateTime": "2022-02-19T19:03:06Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8a4c12e3-1b93-4d52-970b-6db36b309655?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000284-0000000000000568-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "ae8d538f-8a7a-4394-a876-3982733eb615" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ce022e2-d443-4efa-a99b-3e0308497393", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "8a4c12e3-1b93-4d52-970b-6db36b309655", + "lastUpdateDateTime": "2022-02-18T19:03:06Z", + "createdDateTime": "2022-02-18T19:03:06Z", + "expirationDateTime": "2022-02-19T19:03:06Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8a4c12e3-1b93-4d52-970b-6db36b309655?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000285-0000000000000570-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "85d04df7-8677-4847-a153-e49ffe179ae1" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2cef1845-f168-4087-a2b6-f1fb5985a8a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "jobId": "8a4c12e3-1b93-4d52-970b-6db36b309655", + "lastUpdateDateTime": "2022-02-18T19:03:07Z", + "createdDateTime": "2022-02-18T19:03:06Z", + "expirationDateTime": "2022-02-19T19:03:06Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/8a4c12e3-1b93-4d52-970b-6db36b309655?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000286-0000000000000572-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "5d93edbc-fe33-4d85-b7d4-4ea0007f2301" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ce1fc0a3-77e0-4b59-beae-30a71675b53a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "jobId": "8a4c12e3-1b93-4d52-970b-6db36b309655", + "lastUpdateDateTime": "2022-02-18T19:03:07Z", + "createdDateTime": "2022-02-18T19:03:06Z", + "expirationDateTime": "2022-02-19T19:03:06Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "1", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js deleted file mode 100644 index aa299455a8bf..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "98dc178ac1375fa26068fd73bbef6e47"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/text/analytics/v3.2-preview.2/entities/health/jobs', {"documents":[{"id":"1","text":"I should take my cat to the veterinarian."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.2-preview.1/entities/health/jobs/65ed680f-76ad-4828-a77e-2c6b3e80fd45', - 'x-envoy-upstream-service-time', - '798', - 'apim-request-id', - '502e4204-8591-4678-a40e-02d6554ca698', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/65ed680f-76ad-4828-a77e-2c6b3e80fd45') - .query(true) - .reply(200, {"jobId":"65ed680f-76ad-4828-a77e-2c6b3e80fd45","lastUpdateDateTime":"2021-10-23T00:42:52Z","createdDateTime":"2021-10-23T00:42:51Z","expirationDateTime":"2021-10-24T00:42:51Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '1b34f523-acee-4c21-8400-b313bb818c76', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/65ed680f-76ad-4828-a77e-2c6b3e80fd45') - .query(true) - .reply(200, {"jobId":"65ed680f-76ad-4828-a77e-2c6b3e80fd45","lastUpdateDateTime":"2021-10-23T00:42:52Z","createdDateTime":"2021-10-23T00:42:51Z","expirationDateTime":"2021-10-24T00:42:51Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '7b45b102-f39c-4379-aa47-9123e127cc64', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/65ed680f-76ad-4828-a77e-2c6b3e80fd45') - .query(true) - .reply(200, {"jobId":"65ed680f-76ad-4828-a77e-2c6b3e80fd45","lastUpdateDateTime":"2021-10-23T00:42:53Z","createdDateTime":"2021-10-23T00:42:51Z","expirationDateTime":"2021-10-24T00:42:51Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '99', - 'apim-request-id', - 'f630cc81-1880-46c6-afe1-eafbae0bc08a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:54 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/text/analytics/v3.2-preview.1/entities/health/jobs/65ed680f-76ad-4828-a77e-2c6b3e80fd45') - .query(true) - .reply(200, {"jobId":"65ed680f-76ad-4828-a77e-2c6b3e80fd45","lastUpdateDateTime":"2021-10-23T00:42:53Z","createdDateTime":"2021-10-23T00:42:51Z","expirationDateTime":"2021-10-24T00:42:51Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '139', - 'apim-request-id', - '31939960-9073-47ce-85f2-0e3fc931e7cc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Sat, 23 Oct 2021 00:42:54 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json new file mode 100644 index 000000000000..4f79a780cac8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json @@ -0,0 +1,239 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Content-Length": "171", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000297-0000000000000594-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "0ed1a5e0-7f0e-4dc9-a3b9-893d66df2f3b" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "I should take my cat to the veterinarian." + }, + { + "id": "2", + "text": "Este es un document escrito en Espa\u00F1ol." + }, + { + "id": "3", + "text": "\u732B\u306F\u5E78\u305B" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "5f0a799e-1738-477d-82d2-d7ed84980813", + "Date": "Fri, 18 Feb 2022 19:03:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ed67a8cc-4b4c-49ab-922b-8028a569270f", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ed67a8cc-4b4c-49ab-922b-8028a569270f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000298-0000000000000596-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "fefa1c5f-4c34-4ffd-a77c-2d8a5adea23d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4ab2e54-182a-4b2e-90fc-31ce352f1b79", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" + }, + "ResponseBody": { + "jobId": "ed67a8cc-4b4c-49ab-922b-8028a569270f", + "lastUpdateDateTime": "2022-02-18T19:03:16Z", + "createdDateTime": "2022-02-18T19:03:16Z", + "expirationDateTime": "2022-02-19T19:03:16Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ed67a8cc-4b4c-49ab-922b-8028a569270f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000299-0000000000000598-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "afde8e39-aae7-44e2-a5b7-ba86a037fa9d" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2e770d6-c663-43ab-9bf5-631d01f8a605", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 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": "8" + }, + "ResponseBody": { + "jobId": "ed67a8cc-4b4c-49ab-922b-8028a569270f", + "lastUpdateDateTime": "2022-02-18T19:03:16Z", + "createdDateTime": "2022-02-18T19:03:16Z", + "expirationDateTime": "2022-02-19T19:03:16Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ed67a8cc-4b4c-49ab-922b-8028a569270f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000300-0000000000000600-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "d806c01f-6abd-4396-b9e9-9639e181fbb0" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36cadea1-c74d-4c4c-85e2-8a572d5f1c15", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "680" + }, + "ResponseBody": { + "jobId": "ed67a8cc-4b4c-49ab-922b-8028a569270f", + "lastUpdateDateTime": "2022-02-18T19:03:17Z", + "createdDateTime": "2022-02-18T19:03:16Z", + "expirationDateTime": "2022-02-19T19:03:16Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + }, + { + "RequestUri": "https://endpoint/text/analytics/v3.2-preview.2/entities/health/jobs/ed67a8cc-4b4c-49ab-922b-8028a569270f?$top=20\u0026$skip=0", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Accept-Encoding": "gzip,deflate", + "Connection": "keep-alive", + "Ocp-Apim-Subscription-Key": "api_key", + "traceparent": "00-00000000000000000000000000000301-0000000000000602-00", + "User-Agent": "azsdk-js-ai-text-analytics/5.2.0-beta.3 core-rest-pipeline/1.5.1 Node/v16.13.2 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "cfd0c03a-798f-40cf-b6be-b718af32913a" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "895516d3-9377-40bc-8608-300254012af2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 18 Feb 2022 19:03:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "jobId": "ed67a8cc-4b4c-49ab-922b-8028a569270f", + "lastUpdateDateTime": "2022-02-18T19:03:17Z", + "createdDateTime": "2022-02-18T19:03:16Z", + "expirationDateTime": "2022-02-19T19:03:16Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "entities": [ + { + "offset": 28, + "length": 12, + "text": "veterinarian", + "category": "HealthcareProfession", + "confidenceScore": 0.98 + } + ], + "relations": [], + "warnings": [] + }, + { + "id": "2", + "entities": [], + "relations": [], + "warnings": [] + }, + { + "id": "3", + "entities": [], + "relations": [], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2021-05-15" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts b/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts index 605625c96404..3b4c2ffa422d 100644 --- a/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts +++ b/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts @@ -11,20 +11,23 @@ import { PipelineRequest, PipelineResponse, createHttpHeaders } from "@azure/cor describe("TextAnalyticsClient Custom PipelineOptions", function () { it("use custom HTTPClient", async () => { const pipelineTester = new Promise((resolve) => { - const client = createClient("DummyAPIKey", { - httpClient: { - sendRequest: async (request: PipelineRequest): Promise => ({ - status: 200, - request, - bodyAsText: JSON.stringify({ - documents: [ - { id: "0", detectedLanguage: { name: "English", iso6391Name: "en", score: 1.0 } }, - ], - errors: [], - modelVersion: "2019-10-01", + const client = createClient({ + authMethod: "DummyAPIKey", + clientOptions: { + httpClient: { + sendRequest: async (request: PipelineRequest): Promise => ({ + status: 200, + request, + bodyAsText: JSON.stringify({ + documents: [ + { id: "0", detectedLanguage: { name: "English", iso6391Name: "en", score: 1.0 } }, + ], + errors: [], + modelVersion: "2019-10-01", + }), + headers: createHttpHeaders(), }), - headers: createHttpHeaders(), - }), + }, }, }); diff --git a/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts b/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts index 352e187dd9b7..1deed5081631 100644 --- a/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts +++ b/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts @@ -9,9 +9,9 @@ import chaiPromises from "chai-as-promised"; chaiUse(chaiPromises); import { matrix, getYieldedValue } from "@azure/test-utils"; -import { env, isPlaybackMode, Recorder } from "@azure-tools/test-recorder"; +import { assertEnvironmentVariable, isPlaybackMode, Recorder } from "@azure-tools/test-recorder"; -import { AuthMethod, createClient, createRecorder } from "./utils/recordedClient"; +import { AuthMethod, createClient, startRecorder } from "./utils/recordedClient"; import { TextAnalyticsClient, TextDocumentInput, @@ -48,9 +48,9 @@ matrix([["APIKey", "AAD"]] as const, async (authMethod: AuthMethod) => { let getId: () => string; - beforeEach(function (this: Context) { - recorder = createRecorder(this); - client = createClient(authMethod); + beforeEach(async function (this: Context) { + recorder = await startRecorder(this.currentTest); + client = createClient({ authMethod, recorder }); let nextId = 0; getId = function () { nextId += 1; @@ -950,8 +950,12 @@ matrix([["APIKey", "AAD"]] as const, async (authMethod: AuthMethod) => { { recognizeCustomEntitiesActions: [ { - projectName: env.TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_PROJECT_NAME, - deploymentName: env.TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_DEPLOYMENT_NAME, + projectName: assertEnvironmentVariable( + "TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_PROJECT_NAME" + ), + deploymentName: assertEnvironmentVariable( + "TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_DEPLOYMENT_NAME" + ), }, ], }, @@ -1001,8 +1005,12 @@ matrix([["APIKey", "AAD"]] as const, async (authMethod: AuthMethod) => { { singleCategoryClassifyActions: [ { - projectName: env.TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME, - deploymentName: env.TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME, + projectName: assertEnvironmentVariable( + "TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME" + ), + deploymentName: assertEnvironmentVariable( + "TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME" + ), }, ], }, @@ -1051,8 +1059,12 @@ matrix([["APIKey", "AAD"]] as const, async (authMethod: AuthMethod) => { { multiCategoryClassifyActions: [ { - projectName: env.TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME, - deploymentName: env.TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME, + projectName: assertEnvironmentVariable( + "TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME" + ), + deploymentName: assertEnvironmentVariable( + "TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME" + ), }, ], }, diff --git a/sdk/textanalytics/ai-text-analytics/test/public/utils/env.browser.ts b/sdk/textanalytics/ai-text-analytics/test/public/utils/env.browser.ts deleted file mode 100644 index fd2aca680c7b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/test/public/utils/env.browser.ts +++ /dev/null @@ -1,2 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. diff --git a/sdk/textanalytics/ai-text-analytics/test/public/utils/env.ts b/sdk/textanalytics/ai-text-analytics/test/public/utils/env.ts deleted file mode 100644 index 0e06855b73ae..000000000000 --- a/sdk/textanalytics/ai-text-analytics/test/public/utils/env.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -import * as dotenv from "dotenv"; - -dotenv.config(); diff --git a/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts b/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts index 9d0fab4a7b4c..dcf29fd07369 100644 --- a/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts +++ b/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts @@ -1,74 +1,53 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { Context } from "mocha"; +import { Test } from "mocha"; import { + assertEnvironmentVariable, env, Recorder, - record, - RecorderEnvironmentSetup, - isLiveMode, + RecorderStartOptions, } from "@azure-tools/test-recorder"; -import { TokenCredential, ClientSecretCredential } from "@azure/identity"; -import { isNode, createXhrHttpClient } from "@azure/test-utils"; +import { TokenCredential } from "@azure/identity"; +import { createTestCredential } from "@azure-tools/test-credential"; import { AzureKeyCredential, TextAnalyticsClient, TextAnalyticsClientOptions } from "../../../src/"; -import "./env"; -const replaceableVariables: { [k: string]: string } = { - AZURE_CLIENT_ID: "azure_client_id", - AZURE_CLIENT_SECRET: "azure_client_secret", - AZURE_TENANT_ID: "88888888-8888-8888-8888-888888888888", +const envSetupForPlayback: { [k: string]: string } = { TEXT_ANALYTICS_API_KEY: "api_key", // Second API key TEXT_ANALYTICS_API_KEY_ALT: "api_key_alt", ENDPOINT: "https://endpoint", - TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_PROJECT_NAME: "project_name", - TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_DEPLOYMENT_NAME: "deployment_name", - TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME: "project_name", - TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME: "deployment_name", - TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME: "project_name", - TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME: "deployment_name", + TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_PROJECT_NAME: "sanitized", + TEXT_ANALYTICS_RECOGNIZE_CUSTOM_ENTITIES_DEPLOYMENT_NAME: "sanitized", + TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_PROJECT_NAME: "sanitized", + TEXT_ANALYTICS_SINGLE_CATEGORY_CLASSIFY_DEPLOYMENT_NAME: "sanitized", + TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_PROJECT_NAME: "sanitized", + TEXT_ANALYTICS_MULTI_CATEGORY_CLASSIFY_DEPLOYMENT_NAME: "sanitized", }; -const environmentSetup: RecorderEnvironmentSetup = { - replaceableVariables, - customizationsOnRecordings: [ - (recording: string): string => - recording.replace(/"access_token"\s?:\s?"[^"]*"/g, `"access_token":"access_token"`), - // If we put ENDPOINT in replaceableVariables above, it will not capture - // the endpoint string used with nock, which will be expanded to - // https://:443/ and therefore will not match, so we have to do - // this instead. - (recording: string): string => { - const replaced = recording.replace("endpoint:443", "endpoint"); - return replaced; - }, - ], - queryParametersToSkip: [], +const recorderStartOptions: RecorderStartOptions = { + envSetupForPlayback, }; export type AuthMethod = "APIKey" | "AAD" | "DummyAPIKey"; -export function createClient( - authMethod: AuthMethod, - options?: TextAnalyticsClientOptions -): TextAnalyticsClient { - const httpClient = isNode || isLiveMode() ? undefined : createXhrHttpClient(); +export function createClient(options: { + authMethod: AuthMethod; + recorder?: Recorder; + clientOptions?: TextAnalyticsClientOptions; +}): TextAnalyticsClient { + const { authMethod, recorder, clientOptions = {} } = options; + let credential: AzureKeyCredential | TokenCredential; switch (authMethod) { case "APIKey": { - credential = new AzureKeyCredential(env.TEXT_ANALYTICS_API_KEY); + credential = new AzureKeyCredential(assertEnvironmentVariable("TEXT_ANALYTICS_API_KEY")); break; } case "AAD": { - credential = new ClientSecretCredential( - env.AZURE_TENANT_ID, - env.AZURE_CLIENT_ID, - env.AZURE_CLIENT_SECRET, - { httpClient } - ); + credential = createTestCredential(); break; } case "DummyAPIKey": { @@ -82,15 +61,18 @@ export function createClient( return new TextAnalyticsClient( env.ENDPOINT || "https://dummy.cognitiveservices.azure.com/", credential, - { httpClient, ...options } + recorder ? recorder.configureClientOptions(clientOptions) : clientOptions ); } /** - * creates the recorder and reads the environment variables from the `.env` file. + * starts the recorder and reads the environment variables from the `.env` file. * Should be called first in the test suite to make sure environment variables are * read before they are being used. */ -export function createRecorder(context: Context): Recorder { - return record(context, environmentSetup); +export async function startRecorder(currentTest?: Test): Promise { + const recorder = new Recorder(currentTest); + await recorder.start(recorderStartOptions); + await recorder.setMatcher("CustomDefaultMatcher", { excludedHeaders: ["Accept-Language"] }); + return recorder; }